feat: setup FastAPI main app with routers and test fixtures

- Main FastAPI app with all routers included
- CORS middleware for frontend
- Test fixtures with in-memory SQLite database
- Placeholder routers for future tasks
This commit is contained in:
2026-05-11 21:22:55 +02:00
parent 955ed9db49
commit 878e303cc6
6 changed files with 71 additions and 2 deletions
+4
View File
@@ -0,0 +1,4 @@
from fastapi import APIRouter
router = APIRouter(prefix="/api/executions", tags=["executions"])
# Will be implemented in later tasks