feat(FN-002): complete Step 3 — FastAPI Backend App Skeleton

This commit is contained in:
Fusion
2026-05-14 01:31:58 +02:00
parent 79203d2f0f
commit 80f04a5c45
12 changed files with 148 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
{
"name": "@headquarter/api",
"version": "0.0.1",
"private": true,
"scripts": {
"dev": ".venv/bin/uvicorn app.main:app --reload --port 8000",
"build": "echo 'Python build step skipped (no compilation required)'",
"lint": ".venv/bin/ruff check app tests",
"test": ".venv/bin/pytest",
"typecheck": ".venv/bin/mypy app tests"
}
}