# Git .git .gitignore .gitattributes # Docker files Dockerfile docker-compose.yml .dockerignore DOCKER_SETUP.md # Archives (SQL backups can be large) admin/archives/*.sql !admin/archives/archive_2025_base_de_donnees.sql # Temporary files admin/temp/* *.tmp *.log # IDE .vscode .idea *.swp *.swo *~ # OS files .DS_Store Thumbs.db # Documentation CLAUDE.md README.md *.md !DOCKER_SETUP.md # Node modules (if any) node_modules/ npm-debug.log # Composer (if any) vendor/