14 lines
273 B
Python
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,
|
|
)
|