blob: 5f321f1de109b8a3c2341902e34884766c7701c0 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#!/bin/sh
set -e
cd "$(dirname "$0")/.."
export PORT="${PORT:-3000}"
export RAILS_ENV="${RAILS_ENV:-development}"
overmind start --procfile ./Procfile --socket "./tmp/sockets/overmind.sock"
|