HG_Back / app.py
Soumyajit94298's picture
initial
8419546
raw
history blame contribute delete
240 Bytes
import uvicorn
from server.utils import config
if __name__ == "__main__":
uvicorn.run(
"main:app",
host="0.0.0.0",
port=7860,
lifespan="on",
workers=3,
reload=bool(config.debug),
)