pplonski commited on
Commit
c8c5adf
1 Parent(s): bccdab3

Update app.py

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