Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
ConquestAce
/
mathcodes
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
ConquestAce
commited on
Oct 6, 2023
Commit
9f8d77e
·
1 Parent(s):
ec7e8f3
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()