Add monitoring PF service
This commit is contained in:
13
run_web.py
Normal file
13
run_web.py
Normal 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,
|
||||
)
|
||||
Reference in New Issue
Block a user