Initial commit: project scaffold

This commit is contained in:
2026-02-08 08:37:49 +01:00
commit 7d7739d112

53
.gitignore vendored Normal file
View File

@@ -0,0 +1,53 @@
# ===============================
# Python
# ===============================
__pycache__/
*.py[cod]
*.pyo
*.pyd
# Virtual environments
.venv/
venv/
env/
ENV/
# ===============================
# PyCharm / JetBrains
# ===============================
.idea/
*.iml
# ===============================
# Logs & runtime
# ===============================
*.log
logs/
*.pid
# ===============================
# OS junk
# ===============================
.DS_Store
Thumbs.db
# ===============================
# Secrets / config
# ===============================
.env
.env.*
config.local.py
settings.local.py
# ===============================
# Backup / temp
# ===============================
*.bak
*.tmp
tmp/
cache/
# ===============================
# MySQL dumps / exports
# ===============================
*.sql