mirror of
https://github.com/ghndrx/k8s-game-2048.git
synced 2026-02-10 06:45:07 +00:00
- 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
65 lines
695 B
Plaintext
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/
|