Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
amitjamadagni
/
qs-benchmarks
like
2
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
amitjamadagni
commited on
Apr 26, 2023
Commit
a74b576
·
1 Parent(s):
b0e8e70
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()