diff --git a/src/backend/langflow/main.py b/src/backend/langflow/main.py index a383a2afa..d0d62a804 100644 --- a/src/backend/langflow/main.py +++ b/src/backend/langflow/main.py @@ -31,6 +31,10 @@ def create_app(): allow_headers=["*"], ) + @app.get("/health") + def health(): + return {"status": "ok"} + app.include_router(router) app.on_event("startup")(initialize_services)