wonder-of-life/bin/dev
2023-10-23 19:31:32 +03:00

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