#!/usr/bin/env bash echo "Starting gunicorn on port 8080 on separate process" gunicorn --workers=1 --bind=unix:/app/ggsh.sock app:app & echo "Starting nginx daemon" nginx -g "daemon off;"