1
0
Files
Freezer-web-app/configuring.sh
2025-04-01 16:25:40 +02:00

12 lines
317 B
Bash

#!/bin/bash
if [ $FIRSTRUN == "true" ]; then
echo "FIRSTRUN true configuring db and permissions"
cd /var/www/freezer-web-app
chown -R www-data ./database
php artisan migrate --force
apache2ctl -D FOREGROUND
else
echo "FIRSTRUN false configuration already done"
apache2ctl -D FOREGROUND
fi