Initial commit

This commit is contained in:
2026-03-31 13:10:16 +02:00
commit 0d080a9b77
59 changed files with 4021 additions and 0 deletions

55
.gitignore vendored Normal file
View File

@@ -0,0 +1,55 @@
# ── Python ──────────────────────────────────────────────────────────────────
__pycache__/
*.py[cod]
*.pyo
*.pyd
*.pyc
.Python
# ── Environnements virtuels ──────────────────────────────────────────────────
venv/
.venv/
env/
ENV/
.env/
# ── Django ───────────────────────────────────────────────────────────────────
*.sqlite3
db.sqlite3
db.sqlite3-journal
staticfiles/
media/
local_settings.py
# ── Secrets / Config sensible ────────────────────────────────────────────────
.env
.env.*
secret.env
secrets.py
config/local.py
*.secret
# ── Logs ─────────────────────────────────────────────────────────────────────
*.log
logs/
django.log
# ── IDE ───────────────────────────────────────────────────────────────────────
.vscode/
.idea/
*.swp
*.swo
.DS_Store
Thumbs.db
# ── Tests / Coverage ─────────────────────────────────────────────────────────
.coverage
htmlcov/
.pytest_cache/
.tox/
# ── Build / Distribution ─────────────────────────────────────────────────────
dist/
build/
*.egg-info/
.eggs/