Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Liyew
/
fashion_backend
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
24f0dda
fashion_backend
/
app.py
Liyew
Update app.py
24f0dda
verified
about 2 months ago
raw
Copy download link
history
blame
Safe
193 Bytes
from
fastapi
import
FastAPI
from
outfit
import
router
import
uvicorn
app = FastAPI()
app.include_router(router)
if
__name__ ==
"__main__"
:
uvicorn.run(
"app:app"
, host=
"0.0.0.0"
, port=
7860
)