File size: 181 Bytes
54bac2e
5ebef9c
54bac2e
 
 
1
2
3
4
5
6
import uvicorn

if __name__ == "__main__":
    # This line tells uvicorn to run the app defined in app/api.py
    uvicorn.run("app.api:app", host="0.0.0.0", port=8000, reload=True)