Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
filipeclduarte
/
minimalFlaskAPI
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
filipeclduarte
commited on
May 5, 2022
Commit
fc718c5
·
1 Parent(s):
5033f23
starting the server
Browse files
Files changed (1)
hide
show
start.py
+3
-0
start.py
ADDED
Viewed
@@ -0,0 +1,3 @@
1
+
import subprocess
2
+
3
+
subprocess.run("uvicorn app:app --reload --host 0.0.0.0 --port 7860", shell=True)