supervisor

This commit is contained in:
2025-09-18 11:44:01 +00:00
parent f156679578
commit b21ec21516
7 changed files with 46 additions and 8 deletions

View File

@@ -750,4 +750,10 @@ async def health():
except Exception:
logger.exception("Health check failed")
return JSONResponse({"ok": False}, status_code=500)
return {"ok": True}
return {"ok": True}
favicon_path = PATHS.BASE_DIR / 'static' / 'favicon.png'
@app.get('/favicon.ico', include_in_schema=False)
async def favicon():
return FileResponse(favicon_path)