Add deployment script

This commit is contained in:
2026-08-03 12:08:21 -04:00
parent 0ff68ce4bf
commit f212305c95
+16
View File
@@ -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"