Initial backend FastAPI
This commit is contained in:
commit
9e243e28aa
1 changed files with 35 additions and 0 deletions
35
.gitignore
vendored
Normal file
35
.gitignore
vendored
Normal file
|
|
@ -0,0 +1,35 @@
|
||||||
|
# Python
|
||||||
|
__pycache__/
|
||||||
|
*.pyc
|
||||||
|
*.pyo
|
||||||
|
*.pyd
|
||||||
|
|
||||||
|
# Environnements virtuels
|
||||||
|
venv/
|
||||||
|
.env/
|
||||||
|
.env.*
|
||||||
|
*.env
|
||||||
|
|
||||||
|
# Outils
|
||||||
|
.idea/
|
||||||
|
.vscode/
|
||||||
|
.cache/
|
||||||
|
.mypy_cache/
|
||||||
|
pytest_cache/
|
||||||
|
|
||||||
|
# Logs
|
||||||
|
*.log
|
||||||
|
|
||||||
|
# SQLite databases
|
||||||
|
*.db
|
||||||
|
*.sqlite3
|
||||||
|
|
||||||
|
# Docker
|
||||||
|
**/__pycache__/
|
||||||
|
docker-data/
|
||||||
|
dist/
|
||||||
|
build/
|
||||||
|
|
||||||
|
# Systèmes
|
||||||
|
.DS_Store
|
||||||
|
Thumbs.db
|
||||||
Loading…
Reference in a new issue