Initial commit with Phase 0 Scaffolding
Some checks failed
Automated Container Build / build-and-push (push) Failing after 3s
CI / Backend (Python) (push) Failing after 28s
CI / Frontend (TypeScript) (push) Failing after 5m8s

This commit is contained in:
Elijah 2026-06-10 18:28:17 -07:00
parent b393607602
commit c545d4b17d
51 changed files with 7064 additions and 4 deletions

View file

@ -0,0 +1,10 @@
"""API v1 router — aggregates all sub-routers."""
from fastapi import APIRouter
from app.api.v1.health import router as health_router
router = APIRouter(prefix="/api/v1")
# Health (unauthenticated)
router.include_router(health_router)

View file

@ -0,0 +1,13 @@
"""Health check endpoint — unauthenticated."""
from fastapi import APIRouter
from app.config import settings
router = APIRouter(tags=["health"])
@router.get("/health")
def health_check() -> dict[str, str]:
"""Return service health status and version."""
return {"status": "ok", "version": settings.APP_VERSION}