Add monitoring PF service

This commit is contained in:
Grendgi
2026-06-04 14:55:41 +03:00
commit dd3edd7088
41 changed files with 3194 additions and 0 deletions

13
run_web.py Normal file
View File

@@ -0,0 +1,13 @@
"""Convenience launcher for the web UI: `python run_web.py`."""
import uvicorn
from app.config import settings
if __name__ == "__main__":
uvicorn.run(
"app.web:app",
host=settings.web_host,
port=settings.web_port,
reload=False,
)