Files
k8s-game-2048/.gitignore
Greg 6f57651f92 fix: Update webhook handler to skip Docker commands and map environment names
- Remove Docker pull step (Knative handles image pulling)
- Add environment name mapping (development -> dev, production -> prod)
- Add test files to .gitignore to exclude PII
- Webhook signature validation now working correctly
2025-07-01 12:03:23 -07:00

65 lines
695 B
Plaintext

# Node.js
node_modules/
npm-debug.log*
yarn-debug.log*
yarn-error.log*
# Docker
.dockerignore
# Kubernetes
*.bak
# OS generated files
.DS_Store
.DS_Store?
._*
.Spotlight-V100
.Trashes
ehthumbs.db
Thumbs.db
# IDE
.vscode/
.idea/
*.swp
*.swo
# Environment files
.env
.env.local
.env.development
.env.staging
.env.production
webhook_secret.txt
# Test files with PII
test-signature.py
test-webhook.sh
# Personal deployment files
manifests/personal/
config/personal/
# Backup files with potentially sensitive data
*.backup
*.bak
backup-*
# Logs
logs
*.log
# Runtime data
pids
*.pid
*.seed
*.pid.lock
# Coverage directory used by tools like istanbul
coverage/
# Build outputs
dist/
build/