Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
MuhammadNoman7600
/
derm-ai
like
0
Running
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
75e2b6c
derm-ai
/
app.py
muhammadnoman76
update
75e2b6c
3 months ago
raw
Copy download link
history
blame
Safe
139 Bytes
import
uvicorn
from
app.main
import
app
if
__name__ ==
"__main__"
:
uvicorn.run(
"app.main:app"
, host=
"0.0.0.0"
, port=
5000
, reload=
True
)