main
#!/usr/bin/env bash PORT="${PORT:-3030}" export PORT if command -v overmind &> /dev/null; then overmind start -f Procfile "$@" else foreman start -f Procfile "$@" fi