#!/bin/bash # Example server startup script for Gunicorn serving a Flask application # Start Gunicorn with specified number of workers and bind to the necessary port exec gunicorn -w 4 -b 0.0.0.0:8080 app:app