# Git
.git
.gitignore

# Python
__pycache__
*.py[cod]
*$py.class
*.so
.Python
.venv
venv/
ENV/
.mypy_cache/
.pytest_cache/
.ruff_cache/
*.egg-info/
dist/

# Node
node_modules/
frontend/node_modules/
frontend/dist/
.npm

# IDE
.vscode/
.idea/
*.swp
*.swo
*~

# Logs et données locales
*.log
backend/logs/
backend/data/
backend/app/samples/debug/

# Fichiers temporaires
*.tmp
*.temp
.DS_Store
Thumbs.db

# Documentation et fichiers de projet
*.md
!README.md
docs/

# Tests
tests/
**/tests/
.coverage
htmlcov/

# Docker (éviter récursion)
docker-compose*.yml
Dockerfile*

# Environnement
.env
.env.*
!.env.example

# Autres
kanban.md
TODO.md
CHANGELOG.md
