#!/usr/bin/env bash set -euo pipefail cd "$(dirname "$0")" [ -d venv ] && . venv/bin/activate exec gunicorn wsgi:app --bind 0.0.0.0:5000 --workers 4 --timeout 120