26 lines
296 B
Plaintext
26 lines
296 B
Plaintext
# Git
|
|
.git
|
|
.gitignore
|
|
|
|
# Secrets — JAMAIS dans l'image
|
|
.env
|
|
.env.local
|
|
.env.production
|
|
|
|
# Dev
|
|
node_modules
|
|
*.log
|
|
.cursor
|
|
|
|
# Assets source bruts (seul public/ va dans l'image Docker)
|
|
assets/
|
|
|
|
# Infra (pas besoin dans le conteneur)
|
|
Dockerfile
|
|
docker-compose.yml
|
|
nginx.conf
|
|
ssl/
|
|
|
|
# Docs
|
|
README.md
|