Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
abadesalex
/
emb-rep
like
0
Sleeping
App
Files
Files
Community
299ac56
emb-rep
/
FastAPI
/
main.py
abadesalex
reestructre
299ac56
4 months ago
raw
Copy download link
history
blame
Safe
181 Bytes
import
uvicorn
if
__name__ ==
"__main__"
:
# This line tells uvicorn to run the app defined in app/api.py
uvicorn.run(
"app.api:app"
, host=
"0.0.0.0"
, port=
8000
, reload=
True
)