hotspot / call.py
Mbonea's picture
testing deployment
9e798a1
raw
history blame
163 Bytes
import uvicorn
if __name__ == "__main__":
# Run the FastAPI app located at App.app:app
uvicorn.run("App.app:app", host="0.0.0.0", port=8000, reload=True)