Spaces:
Sleeping
Sleeping
File size: 254 Bytes
d17ca98 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
import uvicorn
from server.utils import config
if __name__ == "__main__":
uvicorn.run(
"main:app",
host="0.0.0.0",
port=7860,
lifespan="on",
workers=1,
reload=bool(config.debug),
)
|