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

16 lines
395 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)
# Jalankan php-fpm
exec php-fpm