Update health endpoint to include API name in response

This commit is contained in:
Automated Action 2025-05-19 11:08:37 +00:00
parent 2e7ff1df5a
commit 55992df074

View File

@ -36,7 +36,7 @@ app.include_router(frontend_router)
@app.get("/health", status_code=200)
def health():
"""Health check endpoint"""
return {"status": "healthy"}
return {"message": f"{settings.PROJECT_NAME} is healthy"}
if __name__ == "__main__":