File size: 339 Bytes
4b8cd66 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 | """Application entrypoint — serves React UI + rewrite API."""
from __future__ import annotations
import os
import uvicorn
if __name__ == "__main__":
host = os.environ.get("HOST", "0.0.0.0")
port = int(os.environ.get("PORT", "7860") or "7860")
uvicorn.run("app.main:app", host=host, port=port, reload=False)
|