Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
informatica92
/
BGG-comment-summarizer
like
0
Build error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
informatica92
commited on
Apr 3, 2024
Commit
0e45985
·
verified
·
1 Parent(s):
79e9c0c
Create app.py
Browse files
Files changed (1)
hide
show
app.py
+8
-0
app.py
ADDED
Viewed
@@ -0,0 +1,8 @@
1
+
import os
2
+
from dotenv import load_dotenv
3
+
from subprocess import Popen
4
+
load_dotenv()
5
+
6
+
command = ["mercury", "run", f"0.0.0.0:{os.environ.get('PORT', 7860)}"]
7
+
worker = Popen(command)
8
+
worker.wait()