Some checks failed
Docker Build (PR) / Build Docker image (pull_request) Has been cancelled
6 lines
187 B
Python
6 lines
187 B
Python
if __name__ == "__main__":
|
|
import uvicorn
|
|
|
|
# Run the FastAPI app defined in app/main.py as variable `app`
|
|
uvicorn.run("app.main:app", host="0.0.0.0", port=5001, reload=False)
|