ci: clean up test files, finalize CI/CD pipeline

This commit is contained in:
2026-03-29 13:33:01 +00:00
parent 6679a93553
commit 97e97e5951
4 changed files with 0 additions and 7 deletions

View File

@@ -1 +0,0 @@
2026-03-29T13:29:50+00:00

View File

@@ -1 +0,0 @@
// v1.1 — CI/CD pipeline deployed 2026-03-29T13:26:29+00:00

View File

@@ -1 +0,0 @@
# CI/CD Deploy Log

View File

@@ -5,18 +5,14 @@ export HOME="/root"
LOG="/opt/task-team/deploy.log" LOG="/opt/task-team/deploy.log"
echo "=== Deploy started at $(date -Is) ===" >> $LOG echo "=== Deploy started at $(date -Is) ===" >> $LOG
# Pull latest code
cd /opt/task-team cd /opt/task-team
git pull origin master >> $LOG 2>&1 git pull origin master >> $LOG 2>&1
# Install deps
cd /opt/task-team/api cd /opt/task-team/api
npm install --production >> $LOG 2>&1 npm install --production >> $LOG 2>&1
# Reload API (with --force to avoid "already in progress")
pm2 reload taskteam-api --force >> $LOG 2>&1 pm2 reload taskteam-api --force >> $LOG 2>&1
# Build frontend (if it exists)
if [ -d /opt/task-team/apps/tasks ] && [ -f /opt/task-team/apps/tasks/package.json ]; then if [ -d /opt/task-team/apps/tasks ] && [ -f /opt/task-team/apps/tasks/package.json ]; then
cd /opt/task-team/apps/tasks cd /opt/task-team/apps/tasks
NEXT_PUBLIC_API_URL=http://localhost:3000 npm run build >> $LOG 2>&1 NEXT_PUBLIC_API_URL=http://localhost:3000 npm run build >> $LOG 2>&1