mirror of
https://github.com/opf/openproject.git
synced 2026-06-14 03:30:14 +00:00
11 lines
151 B
Bash
Executable File
11 lines
151 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
if ! command -v foreman &> /dev/null
|
|
then
|
|
echo "Installing foreman..."
|
|
gem install foreman
|
|
fi
|
|
|
|
foreman start -f Procfile.dev
|
|
|