app/frontend/archive/bin/update.sh

17 lines
299 B
Bash
Raw Normal View History

2025-10-13 14:57:11 +02:00
#!/bin/bash
set -e
echo "🔄 Pulling latest changes..."
git pull origin main
echo "🔨 Installing dependencies..."
npm install
echo "🏗️ Building frontend..."
npm run build
echo "🔁 Restarting frontend service..."
sudo systemctl restart dishplanner-frontend
echo "✅ Update complete!"