Files
luna-recipes/deploy.sh
clawd 8ba5eebd93
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
ci: auto-deploy pipeline — webhook triggers rebuild on push
2026-02-18 20:30:11 +00:00

10 lines
247 B
Bash
Executable File

#!/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)"