#!/bin/bash # Generate secrets if the secrets file does not already exist ./manage.py setup generate-secrets # Start the server gunicorn --bind "0.0.0.0:80" --workers "5" --log-file "/volumes/logs/gunicorn.log" "run:create_app()"