Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
alxfazio
/
codewus
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
codewus
/
app.py
Alex Fazio
Update app.py
a68ebb8
over 2 years ago
raw
Copy download link
history
blame
contribute
delete
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()