Files
by/bin/dev
2026-03-02 23:49:35 +05:00

9 lines
172 B
Bash

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