أُنشئ من Tokal/Test
22 أسطر
386 B
Bash
22 أسطر
386 B
Bash
#!/usr/bin/env sh
|
|
set -e
|
|
|
|
cd /var/www/html
|
|
|
|
if [ ! -f .env ]; then
|
|
cp .env.example .env
|
|
fi
|
|
|
|
php artisan key:generate --force --no-interaction || true
|
|
php artisan storage:link || true
|
|
|
|
if [ "${RUN_MIGRATIONS}" = "true" ]; then
|
|
php artisan migrate --force --no-interaction
|
|
fi
|
|
|
|
php artisan config:cache || true
|
|
php artisan route:cache || true
|
|
php artisan view:cache || true
|
|
|
|
exec "$@"
|