60 lines
675 B
Plaintext
60 lines
675 B
Plaintext
# Secrets et fichiers sensibles - NE PAS VERSIONNER
|
|
.env
|
|
*.env
|
|
!*.env.template
|
|
!*.env.example
|
|
!env.template
|
|
|
|
# Fichiers de configuration avec mots de passe
|
|
gitea/gitea.env
|
|
postgres/.env
|
|
consul/.env
|
|
registrator/.env
|
|
|
|
# Logs
|
|
*.log
|
|
*.log.*
|
|
|
|
# Fichiers temporaires
|
|
*.tmp
|
|
*.temp
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# IDE et editeurs
|
|
.idea/
|
|
.vscode/
|
|
.vscode-oss/
|
|
.vscodium-insiders/
|
|
*.code-workspace
|
|
.DS_Store
|
|
|
|
# Docker
|
|
*.pid
|
|
docker-compose.override.yml
|
|
|
|
# Sauvegardes
|
|
*.sql
|
|
*.sql.gz
|
|
*.snap
|
|
backup/
|
|
backups/
|
|
*.backup
|
|
|
|
# Fichiers systeme
|
|
Thumbs.db
|
|
.DS_Store
|
|
|
|
# Certificats et cles (si ajoutes plus tard)
|
|
*.pem
|
|
*.key
|
|
*.crt
|
|
*.cert
|
|
!*.example
|
|
|
|
# Variables d'environnement locales
|
|
.env.local
|
|
.env.*.local
|
|
|