File size: 192 Bytes
83b59a9
b9242df
 
 
1715097
 
b9242df
 
1
2
3
4
5
6
7
8
import os
import sys
import uvicorn
from app import create_app

if __name__ == "__main__":
    port = int(os.environ.get("PORT", 7860))
    uvicorn.run(create_app(), host="0.0.0.0", port=port)