discord-bot / __main__.py
khointn's picture
Upload folder using huggingface_hub
5a67683 verified
raw
history blame contribute delete
159 Bytes
import uvicorn
from app._config import settings
from app.main import app
if __name__ == "__main__":
uvicorn.run(app, host="0.0.0.0", port=settings.PORT)