الملفات
Tabeley-v0.0a/docker/entrypoint.sh
Abdul Kareem 60bbf14ec7
فشلت بعض الفحوصات
Deploy Backend / deploy (push) Has been cancelled
Fix deployment runtime to avoid 502 on hosted server
2026-02-17 00:06:51 +03:00

22 أسطر
394 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 || true
fi
php artisan config:cache || true
php artisan route:cache || true
php artisan view:cache || true
exec "$@"