مراية لـ
https://github.com/postalserver/postal.git
تم المزامنة 2025-12-01 05:43:04 +00:00
10 أسطر
150 B
Bash
ملف تنفيذي
10 أسطر
150 B
Bash
ملف تنفيذي
#!/usr/bin/env bash
|
|
|
|
if ! command -v foreman &> /dev/null
|
|
then
|
|
echo "Installing foreman..."
|
|
gem install foreman
|
|
fi
|
|
|
|
foreman start -f Procfile.dev
|