Add unified health and version reporting

This commit is contained in:
Alexa Amundson
2025-11-19 16:04:41 -06:00
parent 2610c3a07f
commit be339de703
7 changed files with 191 additions and 7 deletions

View File

@@ -64,6 +64,15 @@ async def serve_prism_console():
return FileResponse(prism_index)
@router.get("/prism/health")
async def prism_health():
"""Health endpoint for Prism Console assets."""
return {
"service": "prism-console",
"status": "healthy",
}
@router.get("/prism/{file_path:path}")
async def serve_prism_static_files(file_path: str):
"""