Geek7 commited on
Commit
d602aa2
·
verified ·
1 Parent(s): b9ce889

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -2,5 +2,5 @@ import os
2
 
3
  if __name__ == "__main__":
4
  # Run the Flask app using Gunicorn in the background with nohup
5
- command = "nohup gunicorn -w 4 -b 0.0.0.0:7860 myapp:myapp > gunicorn_output.log 2>&1 &"
6
  os.system(command)
 
2
 
3
  if __name__ == "__main__":
4
  # Run the Flask app using Gunicorn in the background with nohup
5
+ command = "gunicorn -w 4 -b 0.0.0.0:7860 myapp:myapp > gunicorn_output.log 2>&1 &"
6
  os.system(command)