Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
fpadron
/
api-space
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
0c24f35
api-space
/
uvicorn_start.py
fpadron
initial commit
741f393
8 months ago
raw
Copy download link
history
blame
Safe
123 Bytes
import
uvicorn
if
__name__==
"__main__"
:
uvicorn.run(
"api:app"
,host=
'127.0.0.1'
, port=
8000
, reload=
True
, workers=
3
)