From f212305c95324ca6f1af4c4e3d308bb8a9174e56 Mon Sep 17 00:00:00 2001 From: Chris Zerafa Date: Mon, 3 Aug 2026 12:08:21 -0400 Subject: [PATCH] Add deployment script --- scripts/deploy.sh | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100755 scripts/deploy.sh diff --git a/scripts/deploy.sh b/scripts/deploy.sh new file mode 100755 index 0000000..c9eef84 --- /dev/null +++ b/scripts/deploy.sh @@ -0,0 +1,16 @@ +#!/bin/bash +set -euo pipefail + +SOURCE="/opt/git/voyager" +TARGET="/opt/docker/caddy/site/voyager" + +rsync -av --delete \ + --exclude='.git/' \ + --exclude='.gitignore' \ + --exclude='*.backup*' \ + --exclude='systemd/' \ + --exclude='telemetry/' \ + --exclude='scripts/' \ + "$SOURCE/" "$TARGET/" + +echo "Voyager deployed to $TARGET"