ecp.org/bin/dev
2022-10-02 22:28:13 -07:00

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 "$@"