29 lines
626 B
Bash
29 lines
626 B
Bash
#!/bin/sh
|
|
|
|
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
|