gcli2api / run.py
bibibi12345's picture
hf test
cb01b8b
raw
history blame contribute delete
202 Bytes
import os
import uvicorn
from src.main import app
if __name__ == "__main__":
host = os.getenv("HOST", "0.0.0.0")
port = int(os.getenv("PORT", "8888"))
uvicorn.run(app, host=host, port=port)