mirror of
https://github.com/edcommonwealth/ecp.org.git
synced 2026-03-08 23:18:13 -07:00
9 lines
152 B
Bash
Executable file
9 lines
152 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
if ! foreman version &> /dev/null
|
|
then
|
|
echo "Installing foreman..."
|
|
gem install foreman
|
|
fi
|
|
|
|
foreman start -f Procfile.dev "$@"
|