pronounscc/bin/dev
2023-07-20 02:19:45 +02:00

8 lines
156 B
Bash
Executable file

#!/usr/bin/env sh
if ! gem list foreman -i --silent; then
echo "Installing foreman..."
gem install foreman
fi
exec foreman start -f Procfile.dev "$@"