feat: add independent dashboard health endpoint (#26)
All checks were successful
CI / lint (pull_request) Successful in 9s
CI / build-frontend (pull_request) Successful in 5s

This commit is contained in:
timmy 2026-08-05 03:02:51 +00:00
parent fef8480e5f
commit 20a6820d9a
2 changed files with 12 additions and 0 deletions

View File

@ -21,6 +21,12 @@ app.add_middleware(
app.include_router(frontend_router)
@app.get("/healthz")
def health() -> dict[str, str]:
"""Return process liveness without depending on Gitea."""
return {"status": "ok", "service": "stackchain-dashboard"}
@app.get("/api/v1/context")
async def context() -> JSONResponse:
try:

6
tests/test_health.py Normal file
View File

@ -0,0 +1,6 @@
from src.main import app, health
def test_health_endpoint_reports_service_liveness_without_gitea_access():
assert any(getattr(route, "path", None) == "/healthz" for route in app.routes)
assert health() == {"status": "ok", "service": "stackchain-dashboard"}