106 lines
1.2 KiB
Plaintext
106 lines
1.2 KiB
Plaintext
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
.Python
|
|
build/
|
|
develop-eggs/
|
|
dist/
|
|
downloads/
|
|
eggs/
|
|
.eggs/
|
|
lib/
|
|
lib64/
|
|
parts/
|
|
sdist/
|
|
var/
|
|
wheels/
|
|
pip-wheel-metadata/
|
|
share/python-wheels/
|
|
*.egg-info/
|
|
.installed.cfg
|
|
*.egg
|
|
MANIFEST
|
|
|
|
# Virtual environments
|
|
venv/
|
|
venv_api/
|
|
env/
|
|
ENV/
|
|
|
|
# Node.js
|
|
node_modules/
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
.npm
|
|
.yarn-integrity
|
|
|
|
# TypeScript
|
|
*.tsbuildinfo
|
|
dist/
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Logs
|
|
*.log
|
|
logs/
|
|
|
|
# Environment variables
|
|
.env
|
|
.env.local
|
|
.env.development.local
|
|
.env.test.local
|
|
.env.production.local
|
|
**/.env
|
|
|
|
# SSL certificates
|
|
*.crt
|
|
*.key
|
|
*.pem
|
|
|
|
# Vault keys and sensitive data - PROTECTION COMPLÈTE
|
|
# Empêcher l'accès à TOUT le répertoire storage
|
|
storage/
|
|
!storage/.gitkeep
|
|
!storage/*/README.md
|
|
!storage/*/bitcoin/
|
|
!storage/*/bitcoin/*.conf
|
|
!storage/*/nginx/
|
|
!storage/*/nginx/*.conf
|
|
|
|
# Clés utilisateur (double protection)
|
|
storage/*/_keys/
|
|
storage/*/keys.json
|
|
**/_keys/
|
|
**/keys.json
|
|
|
|
# Variables d'environnement (protection renforcée)
|
|
storage/*/.env
|
|
storage/*/.env.*
|
|
|
|
# Temporary files
|
|
/tmp/
|
|
*.tmp
|
|
*.temp
|
|
|
|
# Coverage reports
|
|
coverage/
|
|
*.lcov
|
|
|
|
# Jest
|
|
.jest/
|
|
|
|
# Build artifacts
|
|
build/
|
|
out/ |