Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
jupitvq
/
simple-customer-recommendation
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
jupitvq
commited on
May 31, 2024
Commit
de35a8b
·
verified
·
1 Parent(s):
3a26225
✅ Created 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()