Initial commit: Infrastructure Git CI/CD avec Gitea, Woodpecker, PostgreSQL, Consul et Registrator
This commit is contained in:
59
.gitignore
vendored
Normal file
59
.gitignore
vendored
Normal file
@ -0,0 +1,59 @@
|
||||
# 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
|
||||
|
||||
Reference in New Issue
Block a user