
Initial commit - 4NK Environment - Configuration complète LeCoffre - Architecture autonome avec Nginx intégré - Scripts de déploiement - Documentation IA_agents - Support redirections IdNot (port 3000) - Monitoring Grafana/Loki/Promtail
124 lines
1.2 KiB
Plaintext
124 lines
1.2 KiB
Plaintext
# 4NK Environment - Docker Ignore
|
|
# ===============================
|
|
|
|
# Git
|
|
.git/
|
|
.gitignore
|
|
.gitattributes
|
|
|
|
# Documentation
|
|
README.md
|
|
docs/
|
|
*.md
|
|
!Dockerfile*
|
|
|
|
# Scripts de développement
|
|
scripts/
|
|
*.sh
|
|
!scripts/clone-all-repos.sh
|
|
|
|
# Configuration locale
|
|
.env
|
|
.env.*
|
|
!env.master
|
|
!env.example
|
|
|
|
# Données et logs
|
|
data/
|
|
logs/
|
|
*.log
|
|
*.data
|
|
*.db
|
|
*.sqlite
|
|
|
|
# Cache et build
|
|
node_modules/
|
|
dist/
|
|
build/
|
|
target/
|
|
*.o
|
|
*.so
|
|
*.dylib
|
|
|
|
# IDE et éditeurs
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
*.tmp
|
|
|
|
# Backup
|
|
*.backup/
|
|
backup/
|
|
|
|
# Certificats (sauf ceux nécessaires)
|
|
*.key
|
|
*.pem
|
|
ssl/
|
|
certs/
|
|
|
|
# Docker
|
|
.docker/
|
|
docker-data/
|
|
docker-volumes/
|
|
docker-compose.override.yml
|
|
|
|
# Monitoring
|
|
prometheus-data/
|
|
grafana-data/
|
|
loki-data/
|
|
|
|
# Bitcoin et crypto
|
|
.bitcoin/
|
|
.4nk/
|
|
wallet/
|
|
keys/
|
|
|
|
# Nginx cache et logs
|
|
nginx-cache/
|
|
nginx-logs/
|
|
|
|
# Supervisor logs
|
|
supervisor-logs/
|
|
|
|
# Tests
|
|
tests/
|
|
test/
|
|
spec/
|
|
*.test.js
|
|
*.spec.js
|
|
|
|
# Coverage
|
|
coverage/
|
|
.nyc_output/
|
|
|
|
# Temporary files
|
|
tmp/
|
|
temp/
|
|
*.tmp
|
|
*.temp
|
|
|
|
# Large files
|
|
*.tar
|
|
*.tar.gz
|
|
*.zip
|
|
*.rar
|
|
|
|
# Development tools
|
|
.eslintrc*
|
|
.prettierrc*
|
|
jest.config.*
|
|
tsconfig.json
|
|
package-lock.json
|
|
yarn.lock
|
|
Cargo.lock
|
|
|
|
# Project specific ignores
|
|
office.json
|
|
*.backup
|