Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
njain
/
AppTest
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
AppTest
/
app.py
njain
Create app.py
c34277c
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()