66 lines
512 B
Plaintext
66 lines
512 B
Plaintext
# Git
|
|
.git
|
|
.gitignore
|
|
|
|
# Python
|
|
__pycache__
|
|
*.pyc
|
|
*.pyo
|
|
*.pyd
|
|
.Python
|
|
*.so
|
|
.eggs
|
|
*.egg-info
|
|
.pytest_cache
|
|
.mypy_cache
|
|
.tox
|
|
.nox
|
|
.coverage
|
|
htmlcov
|
|
.hypothesis
|
|
|
|
# Virtual environments
|
|
venv
|
|
.venv
|
|
env
|
|
ENV
|
|
|
|
# IDE
|
|
.idea
|
|
.vscode
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Docker
|
|
Dockerfile
|
|
docker-compose.yml
|
|
.dockerignore
|
|
|
|
# Documentation
|
|
*.md
|
|
!README.md
|
|
|
|
# Logs
|
|
*.log
|
|
logs/
|
|
|
|
# Environment files (contient des secrets)
|
|
.env
|
|
.env.*
|
|
!.env.example
|
|
|
|
# Tests
|
|
tests/
|
|
test_*.py
|
|
*_test.py
|
|
|
|
# Temporary files
|
|
tmp/
|
|
temp/
|
|
*.tmp
|