sistem-akademik/entrypoint.sh
Triono Putra d173f18c2c
All checks were successful
continuous-integration/drone/push Build is passing
oks
2025-06-05 07:30:09 +07:00

18 lines
429 B
Bash

#!/bin/sh
# Salin .env jika belum ada
if [ ! -f .env ]; then
cp .env.example .env
fi
# Set ownership dan permission untuk Laravel
chown -R www-data:www-data /var/www
chmod -R 775 /var/www/storage /var/www/bootstrap/cache
chown -R www-data:www-data /var/www/storage /var/www/bootstrap/cache
# Generate app key (pakai --force agar tidak gagal di production)
php artisan key:generate --force
# Jalankan php-fpm
exec php-fpm