This commit is contained in:
T'JAMPENS QUENTIN p2406187
2025-11-24 23:18:10 +01:00
parent 1f077cfdd2
commit 6c4d03eb6b
3 changed files with 3 additions and 12 deletions
-8
View File
@@ -2,27 +2,19 @@
APP_DIR=/var/www/app
# Vérifie si le repo existe
if [ ! -d "$APP_DIR/.git" ]; then
echo "📥 Aucun projet trouvé. Clonage..."
git clone https://oauth2:${GIT_TOKEN}@${GIT_REPO} $APP_DIR
else
echo "🔄 Projet existant. Pull..."
cd $APP_DIR
git pull
fi
cd $APP_DIR
# Permissions sur storage et cache
mkdir -p storage bootstrap/cache
chown -R www-data:www-data storage bootstrap/cache
chmod -R 775 storage bootstrap/cache
# Composer & artisan
composer install --no-interaction --prefer-dist
php artisan key:generate --force
php artisan migrate --force
php artisan config:cache
exec php-fpm