mirror of
https://github.com/moebooru/moebooru
synced 2025-08-30 21:45:13 +00:00
10 lines
150 B
Bash
Executable File
10 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
|