force laravel seeders

This commit is contained in:
2026-02-11 16:07:28 +01:00
parent 294226077b
commit 4ffcb10636
2 changed files with 4 additions and 0 deletions
+2
View File
@@ -66,6 +66,8 @@ gosu www-data php artisan key:generate --force
gosu www-data php artisan config:clear
gosu www-data php artisan cache:clear
gosu www-data php artisan migrate --force
gosu www-data php artisan db:seed --class=DevSeeder
chmod -R 775 storage bootstrap/cache
chmod -R 755 public
+2
View File
@@ -42,6 +42,7 @@ chown -R www-data:www-data /var/www/.composer
if [ -f composer.json ]; then
composer install --no-interaction --prefer-dist
fi
cp /tmp/app.env .env
@@ -61,6 +62,7 @@ php artisan key:generate --force
php artisan config:clear
php artisan cache:clear
php artisan migrate --force
php artisan db:seed --class=ProdSeeder
chown root:root .env
chmod 440 .env