From 6a62edbdb4660a536c6b48edafc2c4224d27fdb7 Mon Sep 17 00:00:00 2001 From: Chaim Date: Wed, 8 Apr 2026 12:15:11 +0000 Subject: [PATCH] Fix: add /api/health endpoint for Coolify healthcheck Co-Authored-By: Claude Opus 4.6 (1M context) --- web/app.py | 1 + 1 file changed, 1 insertion(+) diff --git a/web/app.py b/web/app.py index 4c6b8ea..2c90fd6 100644 --- a/web/app.py +++ b/web/app.py @@ -179,6 +179,7 @@ async def progress_stream(task_id: str): @app.get("/health") +@app.get("/api/health") async def health(): return {"status": "ok"}