tmgztxi / app.py
Geek7's picture
Create app.py
c293511 verified
raw
history blame
273 Bytes
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:8080 myapp:myapp") # 4 worker processes