Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
erjonb
/
sphere
like
0
Sleeping
App
Files
Files
Community
main
sphere
/
app.py
erjonb
Create app.py
2fe93e8
over 1 year ago
raw
Copy download link
history
blame
contribute
delete
Safe
152 Bytes
import
os
from
subprocess
import
Popen
command = [
"mercury"
,
"run"
,
f"0.0.0.0:
{os.environ.get(
'PORT'
,
7860
)}
"
]
worker = Popen(command)
worker.wait()