51 lines
1.5 KiB
Bash
Executable File
51 lines
1.5 KiB
Bash
Executable File
#!/bin/bash
|
|
# Server Update Script: Pull latest main, build, and restart PM2
|
|
set -e # Stop on any error
|
|
|
|
RED='\033[0;31m'
|
|
GREEN='\033[0;32m'
|
|
YELLOW='\033[1;33m'
|
|
NC='\033[0m'
|
|
|
|
APP_DIR="/root/My-Weekly-ToDo-List"
|
|
PM2_NAME="my-weekly-todo"
|
|
APP_URL="https://todo.martin-bierschenk.de"
|
|
|
|
cd "$APP_DIR"
|
|
|
|
echo -e "${YELLOW}[1/6] Syncing with GitHub (main)...${NC}"
|
|
git fetch origin
|
|
git reset --hard origin/main # Force-sync, ignores any local changes
|
|
echo -e " Version: $(node -p "require('./package.json').version")"
|
|
|
|
echo -e "${YELLOW}[2/6] Installing dependencies...${NC}"
|
|
rm -rf node_modules
|
|
npm ci
|
|
|
|
echo -e "${YELLOW}[3/6] Running database migrations...${NC}"
|
|
npx prisma migrate deploy || {
|
|
echo -e "${YELLOW} migrate deploy failed, falling back to db push...${NC}"
|
|
npx prisma db push --accept-data-loss
|
|
}
|
|
npx prisma generate
|
|
|
|
echo -e "${YELLOW}[4/6] Building application...${NC}"
|
|
rm -rf .next
|
|
npm run build
|
|
|
|
echo -e "${YELLOW}[5/6] Copying static assets to standalone...${NC}"
|
|
cp -r public .next/standalone/
|
|
mkdir -p .next/standalone/.next/static
|
|
cp -r .next/static .next/standalone/.next/
|
|
cp .env .next/standalone/ 2>/dev/null || true
|
|
cp .env.local .next/standalone/ 2>/dev/null || true
|
|
|
|
echo -e "${YELLOW}[6/6] Restarting PM2...${NC}"
|
|
pm2 delete "$PM2_NAME" 2>/dev/null || true
|
|
PORT=3000 NEXTAUTH_URL="$APP_URL" pm2 start .next/standalone/server.js --name "$PM2_NAME"
|
|
pm2 save
|
|
|
|
echo ""
|
|
echo -e "${GREEN}✓ Update complete! Running v$(node -p "require('./package.json').version")${NC}"
|
|
pm2 list
|