
- Keep Cursor-specific content in .cursorignore and .dockerignore - Keep comprehensive Git ignore rules in .gitignore - Maintain protection for sensitive files and directories
18 lines
314 B
Plaintext
18 lines
314 B
Plaintext
# PROTECTION COMPLÈTE - Empêcher l'accès Docker à storage/
|
|
**/__pycache__/
|
|
**/dist/
|
|
**/node_modules/
|
|
**/package-lock.json*
|
|
**/yarn.lock*
|
|
|
|
# Variables d'environnement (protection renforcée)
|
|
|
|
**/.crt*
|
|
**/.key*
|
|
**/.pem*
|
|
|
|
# Clés utilisateur et données sensibles
|
|
**/_keys/
|
|
**/keys.json*
|
|
storage/dev/.env.secrets
|