Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
erjonb
/
sphere
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
erjonb
commited on
May 19, 2023
Commit
2fe93e8
·
1 Parent(s):
8e4d916
Create app.py
Browse files
Files changed (1)
hide
show
app.py
+6
-0
app.py
ADDED
Viewed
@@ -0,0 +1,6 @@
1
+
import os
2
+
from subprocess import Popen
3
+
4
+
command = ["mercury", "run", f"0.0.0.0:{os.environ.get('PORT', 7860)}"]
5
+
worker = Popen(command)
6
+
worker.wait()