File size: 162 Bytes
6203f3a
 
 
 
 
1
2
3
4
5
6
import uvicorn
from app.core.config import settings

if __name__ == "__main__":
    uvicorn.run("app.main:app", host="0.0.0.0", port=settings.PORT, reload=False)