init: documentation and prototypes

This commit is contained in:
2025-12-01 22:01:19 +01:00
parent e936fb41fa
commit 45d60fc1a9
51 changed files with 2476 additions and 1 deletions

View File

@@ -0,0 +1,28 @@
[project]
name = "dvd-backend"
version = "0.1.0"
description = "DirektVermittlungDe reference backend"
requires-python = ">=3.11"
dependencies = [
"fastapi>=0.115.0",
"uvicorn[standard]>=0.30.0",
"pydantic>=2.7.0",
"SQLAlchemy>=2.0.30",
"asyncpg>=0.29.0",
"aiobotocore>=2.15.0",
"python-jose[cryptography]>=3.3.0",
"redis>=5.0.0",
]
[project.optional-dependencies]
dev = [
"pytest",
"pytest-asyncio",
"httpx",
]
[tool.uvicorn]
factory = false
port = 8000
host = "0.0.0.0"
app = "app.main:app"