Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Duplicated from
AItool/Vertical9_16
AItool
/
ReSizeImage
like
0
Running
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
AItool
commited on
Oct 15
Commit
5c58cff
·
verified
·
1 Parent(s):
c78847d
Update app.py
Browse files
Files changed (1)
hide
show
app.py
+3
-0
app.py
CHANGED
Viewed
@@ -86,3 +86,6 @@ def demo_page():
86
</body>
87
</html>
88
"""
86
</body>
87
</html>
88
"""
89
+
if __name__ == "__main__":
90
+
import uvicorn
91
+
uvicorn.run(app, host="0.0.0.0", port=int(os.environ.get("PORT", 7860)))