Initial FastAPI + SQLite + Alembic

This commit is contained in:
ShaBle
2026-02-06 17:06:35 +01:00
commit 465aa0f1c1
29 changed files with 826 additions and 0 deletions

20
.gitignore vendored Normal file
View File

@@ -0,0 +1,20 @@
# venv / python cache
.venv/
__pycache__/
*.pyc
.pytest_cache/
.ruff_cache/
# env / secrets
.env
# local data / sqlite
data/
*.db
# editor
.vscode/
# OS
.DS_Store
Thumbs.db