File size: 275 Bytes
ac39d6f e089372 2c8a77f 5689272 2c8a77f |
1 2 3 4 5 6 7 8 9 10 11 |
import os
import subprocess
if __name__ == "__main__":
# Run awake.py in the background
subprocess.Popen(["python", "wk.py"]) # Start awake.py
# Run the Flask app using Gunicorn
os.system("gunicorn -w 4 -b 0.0.0.0:7860 myapp:myapp") # 4 worker processes |