mirror of
https://github.com/opf/openproject.git
synced 2026-06-14 03:30:14 +00:00
11 lines
297 B
Bash
Executable File
11 lines
297 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
if command -v overmind &> /dev/null; then
|
|
overmind start -f Procfile.dev
|
|
elif command -v foreman &> /dev/null; then
|
|
foreman start -f Procfile.dev
|
|
else
|
|
echo 'Neither overmind, nor foreman is installed, either `gem install overmind` or `gem install foreman`.'
|
|
exit 1
|
|
fi
|