mirror of
https://github.com/astuto/astuto.git
synced 2025-12-16 19:57:52 +01:00
9 lines
156 B
Plaintext
9 lines
156 B
Plaintext
|
|
#!/usr/bin/env sh
|
||
|
|
|
||
|
|
if ! gem list foreman -i --silent; then
|
||
|
|
echo "Installing foreman..."
|
||
|
|
gem install foreman
|
||
|
|
fi
|
||
|
|
|
||
|
|
exec foreman start -f Procfile.dev "$@"
|