Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
pplonski
/
artificial-calculus-teacher
like
0
Build error
App
Files
Files
Community
2
pplonski
commited on
Oct 27, 2022
Commit
3d79cbe
•
1 Parent(s):
744b2a6
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()