Initial resurrection kit — 81 scripts, 62 references, configs, systemd units, crons, Docker compose files, Caddy config, master README

This commit is contained in:
root
2026-07-15 17:45:36 -04:00
commit ae056eaf83
197 changed files with 26127 additions and 0 deletions
+34
View File
@@ -0,0 +1,34 @@
#!/bin/bash
# hermes-live-sync.sh — Full Hermes sync to S3 every 15 min
# Mirrors entire .hermes directory (minus bulky caches) to Wasabi.
# Silent on success, loud on failure.
set -euo pipefail
HERMES_HOME="${HERMES_HOME:-$HOME/.hermes}"
ENDPOINT="https://s3.us-east-1.wasabisys.com"
BUCKET="hermes-vps-backups"
DEST_PREFIX="live"
if [ -f /opt/awscli-venv/bin/activate ]; then
source /opt/awscli-venv/bin/activate
fi
aws s3 sync "$HERMES_HOME" "s3://$BUCKET/$DEST_PREFIX/" \
--endpoint-url "$ENDPOINT" \
--exclude "audio_cache/*" \
--exclude "image_cache/*" \
--exclude "cache/*" \
--exclude "sandboxes/*" \
--exclude "kanban/*" \
--exclude "node/*" \
--exclude "bin/*" \
--exclude "logs/*" \
--exclude "*.lock" \
--exclude ".skills_prompt_snapshot.json" \
--exclude ".update_check" \
2>&1 | grep -v "^$" || true
# NOTE: Docker volume sync moved to hermes-docker-sync.sh (itpropartner-docker-volumes bucket)
# NOTE: Caddyfile sync moved to hermes-system-config-sync.sh (itpropartner-system-configs bucket)
exit 0