shreerangss's picture
Prepare Hugging Face staging deployment branch
f4398fd
Raw
History Blame Contribute Delete
189 Bytes
#!/usr/bin/env python3
import os
import uvicorn
if __name__ == "__main__":
uvicorn.run(
"main:app",
host="0.0.0.0",
port=int(os.getenv("PORT", "7860")),
)