Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
- Add WaitGroup for graceful shutdown of in-flight tasks - Change replicas to 1 with Recreate strategy (RWO PVC limitation) - Optimize Dockerfile: combine RUN commands for smaller layers - Add compiled binaries to .gitignore Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
46 lines
606 B
Plaintext
46 lines
606 B
Plaintext
# Credentials - never commit (root .claude/ only, not templates)
|
|
/.claude/
|
|
*.credentials*
|
|
*.key
|
|
*.pem
|
|
.secrets
|
|
|
|
# Kubernetes secrets with real values (use *.example as template)
|
|
deployments/k8s/base/secrets.yaml
|
|
deployments/k8s/base/credentials.yaml
|
|
|
|
# Local development
|
|
.env.local
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# IDE
|
|
.idea/
|
|
.vscode/
|
|
*.swp
|
|
*.swo
|
|
|
|
# Build artifacts
|
|
*.tar
|
|
*.gz
|
|
/rdev-api
|
|
/sdlc
|
|
coverage.out
|
|
|
|
# Temporary files
|
|
tmp/
|
|
|
|
# Deploy keys (generated, never commit)
|
|
*-deploy-key
|
|
*-deploy-key.pub
|
|
*-deploy-key.b64
|
|
.agentive-remediation/
|
|
|
|
# Compiled binaries
|
|
/rdev-worker
|
|
/rdev-api
|
|
/claudebox-sidecar
|
|
/sdlc
|