Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
pplonski
/
my-notebooks
like
1
Runtime error
App
Files
Files
Community
1
Fetching metadata from the HF Docker repository...
pplonski
commited on
Apr 21, 2023
Commit
a17a129
·
1 Parent(s):
5ea50a6
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()