Your IP : 172.16.0.223


Current Path : /var/app/current/
Upload File :
Current File : /var/app/current/deploy.sh

#!/bin/bash

# Exit on error
set -e

# Navigate to the Laravel app directory
cd /var/www/html/enquete/fukushisurvey.jp/quill

# Ensure we are on the correct branch
git checkout phase2
git pull origin phase2

# Install/update Composer dependencies
composer install --no-dev --optimize-autoloader

# Run database migrations (if needed)
php artisan migrate

# Clear cache and optimize
php artisan cache:clear
php artisan config:clear

echo "Deployment to phase2 completed successfully!"