summaryrefslogtreecommitdiff
path: root/bin/dev
blob: a1104a50b10248c83d4c8c1ee7340cab55f91c3b (plain)
1
2
3
4
5
6
7
8
9
#!/usr/bin/env bash

if ! command -v foreman &> /dev/null
then
  echo "Installing foreman..."
  gem install foreman
fi

foreman start -f Procfile.dev "$@"