68 lines
No EOL
614 B
Text
68 lines
No EOL
614 B
Text
# Environment files
|
|
.env
|
|
.env.local
|
|
.env.production
|
|
|
|
# Data directories
|
|
data/
|
|
backups/
|
|
pg_data/
|
|
pgdata/
|
|
|
|
# Log files
|
|
*.log
|
|
logs/
|
|
log/
|
|
|
|
# Certificates and keys
|
|
certs/
|
|
*.crt
|
|
*.key
|
|
*.pem
|
|
*.p12
|
|
*.pfx
|
|
|
|
# Backup files
|
|
*.dump
|
|
*.sql
|
|
*.sql.gz
|
|
*.tar
|
|
*.tar.gz
|
|
*.backup
|
|
|
|
# pgAdmin data
|
|
pgadmin_data/
|
|
.pgadmin/
|
|
|
|
# Temporary files
|
|
*.tmp
|
|
*.temp
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# OS files
|
|
.DS_Store
|
|
Thumbs.db
|
|
desktop.ini
|
|
|
|
# IDE files
|
|
.idea/
|
|
.vscode/
|
|
*.iml
|
|
|
|
# Docker volumes (local bindings)
|
|
/data
|
|
/backups
|
|
/pgadmin_data
|
|
|
|
# Test data
|
|
test_data/
|
|
*.test.sql
|
|
|
|
# Migration tracking
|
|
.migrations_applied
|
|
|
|
# Monitoring data
|
|
prometheus_data/
|
|
grafana_data/ |