File size: 214 Bytes
f2a4578
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
import os
import uvicorn
from main import app

if __name__ == "__main__":
    # Hugging Face Spaces uses port 7860
    port = int(os.environ.get("PORT", 7860))
    uvicorn.run(app, host="0.0.0.0", port=port)