fe0a311d39
Config reads from env vars (12-factor); .env.example documents defaults. Health endpoint is liveness-only (no DB/Redis touch). Test added for CI. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
6 lines
122 B
Python
6 lines
122 B
Python
"""Health endpoint — no DB or Redis touch; just liveness."""
|
|
|
|
|
|
async def get_health():
|
|
return {"status": "ok"}, 200
|