#!/bin/bash export PGADMIN_LISTEN_ADDRESS=0.0.0.0 export PGADMIN_LISTEN_PORT=7860 gunicorn --bind 0.0.0.0:7860 -w 4 --threads 8 --timeout 120 --max-requests 1000 --max-requests-jitter 10 flask:app