Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Really-amin
/
Hoghoghi
like
0
Paused
App
Files
Files
Community
1
Fetching metadata from the HF Docker repository...
Really-amin
commited on
Aug 2
Commit
1b22157
·
verified
·
1 Parent(s):
9615ba6
Create app.py
Browse files
Files changed (1)
hide
show
app.py
+5
-0
app.py
ADDED
Viewed
@@ -0,0 +1,5 @@
1
+
import uvicorn
2
+
from app.main import app
3
+
4
+
if __name__ == "__main__":
5
+
uvicorn.run(app, host="0.0.0.0", port=7860)