Spaces:
Sleeping
Sleeping
File size: 222 Bytes
f4e02da | 1 2 3 4 5 6 7 8 9 10 11 12 | from __future__ import annotations
import os
import uvicorn
def main() -> None:
host = os.getenv("HOST", "0.0.0.0")
port = int(os.getenv("PORT", "7860"))
uvicorn.run("server.app:app", host=host, port=port)
|