74 lines
642 B
Plaintext
Executable File
74 lines
642 B
Plaintext
Executable File
# Git
|
|
.git
|
|
.gitignore
|
|
README.md
|
|
|
|
# Documentation
|
|
docs/
|
|
*.md
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Logs
|
|
*.log
|
|
logs/
|
|
|
|
# Temporary files
|
|
*.tmp
|
|
*.temp
|
|
.cache/
|
|
|
|
# Node modules (pour le frontend)
|
|
frontend/node_modules/
|
|
frontend/dist/
|
|
|
|
# Python cache
|
|
__pycache__/
|
|
*.pyc
|
|
*.pyo
|
|
*.pyd
|
|
.Python
|
|
*.so
|
|
|
|
# Virtual environments
|
|
venv/
|
|
env/
|
|
ENV/
|
|
|
|
# Database
|
|
*.db
|
|
*.sqlite
|
|
*.sqlite3
|
|
postgres_data/
|
|
|
|
# Uploads
|
|
uploads/
|
|
!uploads/.gitkeep
|
|
|
|
# Environment files
|
|
.env
|
|
.env.local
|
|
.env.production
|
|
|
|
# Docker
|
|
docker-compose.override.yml
|
|
Dockerfile*
|
|
|
|
# Testing
|
|
.coverage
|
|
htmlcov/
|
|
.pytest_cache/
|
|
.tox/
|
|
|
|
# Celery
|
|
celerybeat-schedule
|
|
celerybeat.pid
|