Merge pull request #9276 from tchak/chore-use-overmind

chore(dev): use overmind instead of foreman
This commit is contained in:
Paul Chavard 2023-07-05 14:40:21 +00:00 committed by GitHub
commit e90093cc69
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,9 +1,8 @@
#!/usr/bin/env bash
if ! command -v foreman &> /dev/null
if ! command -v overmind &> /dev/null
then
echo "Installing foreman..."
gem install foreman
echo "You need to install overmind. https://github.com/DarthSim/overmind#installation"
fi
foreman start -f Procfile.dev "$@"
OVERMIND_SKIP_ENV=true overmind start -f Procfile.dev "$@"