#!/bin/bash # Start the Gunicorn server in the background nohup gunicorn -w 4 -b 0.0.0.0:7860 myapp:myapp > gunicorn_output.log 2>&1 & echo "Gunicorn server started."