#!/bin/bash
# Gas Cylinder Management — cPanel Deploy Script
# cPanel Terminal-এ চালান: bash deploy.sh

echo "🚀 Deployment শুরু হচ্ছে..."

# ─── Cache Clear ──────────────────────────────────────
echo "→ Cache clear করছি..."
php artisan config:clear
php artisan cache:clear
php artisan view:clear
php artisan route:clear

# ─── Storage Permission ────────────────────────────────
echo "→ Permission ঠিক করছি..."
chmod -R 755 storage
chmod -R 755 bootstrap/cache
chmod -R 775 storage/logs
chmod -R 775 storage/framework/sessions
chmod -R 775 storage/framework/views
chmod -R 775 storage/framework/cache

# ─── Migrate & Seed ────────────────────────────────────
echo "→ Migration চালাচ্ছি..."
php artisan migrate --seed --force

# ─── Production Optimize ──────────────────────────────
echo "→ Production optimize করছি..."
php artisan config:cache
php artisan route:cache
php artisan view:cache
php artisan storage:link

echo ""
echo "✅ Deployment সম্পন্ন!"
echo "→ https://cylindermanagement.bengalcoder.com"
echo ""
echo "📋 Default Login:"
echo "   Admin:   admin@gas.com   / admin123"
echo "   Manager: manager@gas.com / manager123"
echo "   Delivery:delivery@gas.com/ delivery123"
