mirror of
https://github.com/Freika/dawarich.git
synced 2026-01-09 08:47:11 -05:00
9 lines
150 B
Bash
Executable file
9 lines
150 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
|