Files
openproject/bin/dev
T

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

11 lines
297 B
Bash
Raw Normal View History

2023-05-17 14:46:54 +02:00
#!/usr/bin/env bash
2023-05-24 17:03:51 -05:00
if command -v overmind &> /dev/null; then
overmind start -f Procfile.dev
elif command -v foreman &> /dev/null; then
foreman start -f Procfile.dev
2023-05-24 17:03:51 -05:00
else
echo 'Neither overmind, nor foreman is installed, either `gem install overmind` or `gem install foreman`.'
exit 1
2023-05-24 17:03:51 -05:00
fi