Blocks .env, *.key, *.pem, id_rsa*, secrets.*, credentials.json, etc. Preventive — no exposure found; future commits can't accidentally leak these. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
55 lines
692 B
Plaintext
55 lines
692 B
Plaintext
# Secrets (encrypted by git-crypt)
|
|
|
|
# Logs
|
|
logs/
|
|
*.log
|
|
|
|
# IIS generated folders
|
|
aspnet_client/
|
|
|
|
# Test results
|
|
tests/test_results_*.csv
|
|
|
|
# Editor files
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
.vscode/
|
|
|
|
# Large binary installers
|
|
installers/
|
|
v2/installers/
|
|
|
|
# Database backups (should not be version-controlled)
|
|
shopdb-database-backup-*.sql
|
|
database-backup-*.sql
|
|
employee*-database-backup-*.sql
|
|
shopdb_backup_*.sql
|
|
|
|
# Backup/scratch files
|
|
*.bak
|
|
*.pdf
|
|
|
|
# OS files
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Secrets and credentials (defensive)
|
|
.env
|
|
.env.*
|
|
!.env.example
|
|
!.env.*.example
|
|
*.pem
|
|
*.key
|
|
id_rsa
|
|
id_rsa.*
|
|
*.ppk
|
|
*.p12
|
|
*.pfx
|
|
secrets.json
|
|
secrets.yaml
|
|
secrets.yml
|
|
*_secret
|
|
*_secrets
|
|
credentials.json
|