Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Solar-Iz
/
FastAPI
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
5c0b843
FastAPI
/
run_app.py
Solar-Iz
Create run_app.py
5c0b843
over 1 year ago
raw
Copy download link
history
blame
Safe
132 Bytes
from
app.main
import
app
if
__name__ ==
"__main__"
:
import
uvicorn
uvicorn.run(app, host=
"0.0.0.0"
, port=
8000
, reload=
True
)