fix: add /health endpoint for health checks

Add simple health check endpoint that returns {status: healthy}.
Needed for Traefik health checks and monitoring.
This commit is contained in:
Fusion
2026-05-18 21:36:39 +02:00
parent 899fba9c9b
commit 3cd8674c31
+4
View File
@@ -86,6 +86,10 @@ services:
async def on_startup():
await seed_builtin_tool_types()
@app.get("/health")
async def health_check():
return {"status": "healthy"}
app.include_router(auth_router)
app.include_router(projects_router)
app.include_router(users_router)