Files
monitoring-pf/run_web.py
2026-06-04 14:55:41 +03:00

14 lines
273 B
Python

"""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,
)