ju2ez commited on
Commit
2959f54
·
verified ·
1 Parent(s): 3a96102

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -1,7 +1,7 @@
1
  import os
2
  from subprocess import Popen
3
 
4
- #command = ["mercury", "run", f"0.0.0.0:{os.environ.get('PORT', 7860)}"]
5
- command = ["mercury", "run", "7860"]
6
  worker = Popen(command)
7
  worker.wait()
 
1
  import os
2
  from subprocess import Popen
3
 
4
+ command = ["mercury", "run", f"0.0.0.0:{os.environ.get('PORT', 7860)}"]
5
+
6
  worker = Popen(command)
7
  worker.wait()