sistem-akademik/entrypoint.sh
Triono Putra 21f65dd2d2
Some checks failed
continuous-integration/drone/push Build is failing
oks
2025-06-05 07:06:48 +07:00

15 lines
353 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
php artisan key:generate
# Jalankan php-fpm
exec php-fpm