Admin Health
Forzelite internal — staff only (auth gate lands v0.1 wk 9-10)
API liveness — /health/live
Reports whether the API process is responding. Container Apps probes use this as the liveness signal.
{
"status": "live",
"version": "0.0.1",
"environment": "dev"
}API readiness — /health/ready
Reports whether the API can serve traffic (DB + Redis reachable). Container Apps probes use this as the readiness signal — failing instances are pulled from rotation.
{
"status": "ready",
"version": "0.0.1",
"environment": "dev"
}