feat: add production deploy helper
This commit is contained in:
57
scripts/deploy_prod_from_mac.sh
Executable file
57
scripts/deploy_prod_from_mac.sh
Executable file
@@ -0,0 +1,57 @@
|
||||
#!/usr/bin/env bash
|
||||
set -euo pipefail
|
||||
|
||||
REPO_ROOT="$(cd "$(dirname "${BASH_SOURCE[0]}")/.." && pwd)"
|
||||
DEPLOY_HOST="${DEPLOY_HOST:-root@192.168.2.55}"
|
||||
DEPLOY_PATH="${DEPLOY_PATH:-/opt/workdock}"
|
||||
HEALTH_URL="${HEALTH_URL:-https://workdock.bostame.de/healthz/}"
|
||||
REMOTE_ENV_FILE="${REMOTE_ENV_FILE:-.env.prod}"
|
||||
COMPOSE_FILE="${COMPOSE_FILE:-docker-compose.prod.yml}"
|
||||
RUN_DJANGO_CHECK="${RUN_DJANGO_CHECK:-1}"
|
||||
SSH_CMD="${SSH_CMD:-ssh -4}"
|
||||
RSYNC_SSH="${RSYNC_SSH:-ssh -4}"
|
||||
|
||||
cd "$REPO_ROOT"
|
||||
|
||||
current_branch="$(git branch --show-current)"
|
||||
if [[ "$current_branch" != "main" ]]; then
|
||||
echo "Expected branch 'main' for production deployment, got '$current_branch'." >&2
|
||||
echo "Switch to main or override intentionally before deploying." >&2
|
||||
exit 1
|
||||
fi
|
||||
|
||||
echo "Updating local branch from origin/main..."
|
||||
git pull --ff-only origin main
|
||||
|
||||
echo "Checking remote env file..."
|
||||
$SSH_CMD "$DEPLOY_HOST" "test -f '$DEPLOY_PATH/$REMOTE_ENV_FILE'" || {
|
||||
echo "Missing remote env file: $DEPLOY_PATH/$REMOTE_ENV_FILE" >&2
|
||||
echo "Create or restore the server env file before deploying." >&2
|
||||
exit 1
|
||||
}
|
||||
|
||||
echo "Syncing repository to ${DEPLOY_HOST}:${DEPLOY_PATH} ..."
|
||||
rsync -az --delete \
|
||||
--filter 'P .env.test' \
|
||||
--filter 'P .env.prod' \
|
||||
--exclude '.git' \
|
||||
--exclude '.github' \
|
||||
--exclude '.venv' \
|
||||
--exclude '__pycache__' \
|
||||
--exclude 'node_modules' \
|
||||
--exclude 'backend/media' \
|
||||
--exclude 'backend/staticfiles' \
|
||||
-e "$RSYNC_SSH" \
|
||||
"$REPO_ROOT"/ \
|
||||
"${DEPLOY_HOST}:${DEPLOY_PATH}/"
|
||||
|
||||
echo "Running remote deployment..."
|
||||
$SSH_CMD "$DEPLOY_HOST" \
|
||||
"cd '$DEPLOY_PATH' && RUN_DJANGO_CHECK='$RUN_DJANGO_CHECK' DEPLOY_HEALTH_URL='$HEALTH_URL' ./scripts/deploy_stack.sh '$REMOTE_ENV_FILE' '$COMPOSE_FILE'"
|
||||
|
||||
echo "Verifying health endpoint..."
|
||||
curl --fail --silent --show-error --max-time 10 "$HEALTH_URL" >/dev/null
|
||||
commit_sha="$(git rev-parse --short HEAD)"
|
||||
echo "Production deployment healthy: $HEALTH_URL"
|
||||
echo "Deployed commit: $commit_sha"
|
||||
echo "Branch: $current_branch"
|
||||
Reference in New Issue
Block a user