ci: auto-deploy pipeline — webhook triggers rebuild on push
Some checks are pending
CI / 🔧 Backend Check (push) Waiting to run
CI / 🎨 Frontend Build (push) Waiting to run
Auto Deploy / ✅ Pre-Deploy Check (push) Waiting to run
Security Audit / 🔒 Backend Audit (push) Waiting to run
Security Audit / 🔒 Frontend Audit (push) Waiting to run

This commit is contained in:
clawd
2026-02-18 20:30:11 +00:00
parent c18f88d0d1
commit 8ba5eebd93
3 changed files with 61 additions and 0 deletions

9
deploy.sh Executable file
View File

@@ -0,0 +1,9 @@
#!/bin/bash
# Auto-deploy: pull latest + rebuild containers
set -e
cd "$(dirname "$0")"
echo "🔄 Pulling latest..."
git pull
echo "🐳 Rebuilding containers..."
docker compose up -d --build backend frontend
echo "🚀 Deploy complete! $(date)"