Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
bla
/
hotspot
like
0
Running
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
41eef54
hotspot
/
call.py
Mbonea
testing deployment
9e798a1
5 months ago
raw
Copy download link
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
)