#!/bin/bash # Bootstrap Padelnomics supervisor after setup_server.sh + adding keys. # Run once on the server after SSH deploy key is added to GitLab # and the server age key is committed to .env.prod.sops. # # Usage: # ssh root@ 'bash -s' < infra/bootstrap_supervisor.sh # # Prerequisites: # - setup_server.sh already run (padelnomics_service user, SSH deploy key, age keypair, uv) # - Deploy key added to GitLab (Settings → Repository → Deploy Keys) # - Server age public key added to .sops.yaml + .env.prod.sops committed + pushed set -euo pipefail SERVICE_USER="padelnomics_service" REPO_DIR="/opt/padelnomics" GITEA_REPO="ssh://git@git.padelnomics.io:2222/deemanone/padelnomics.git" UV="/home/${SERVICE_USER}/.local/bin/uv" [ "$(id -u)" = "0" ] || { echo "ERROR: Run as root"; exit 1; } # ── Check age keypair ───────────────────────────────────────────────────────── AGE_KEY_FILE="/home/${SERVICE_USER}/.config/sops/age/keys.txt" if [ ! -f "${AGE_KEY_FILE}" ]; then echo "ERROR: Age keypair not found at ${AGE_KEY_FILE}" echo "Run infra/setup_server.sh first, then add the printed keys, then re-run." exit 1 fi # ── Clone or update repository ──────────────────────────────────────────────── if [ -d "${REPO_DIR}/.git" ]; then sudo -u "${SERVICE_USER}" git -C "${REPO_DIR}" fetch --tags --prune-tags origin else sudo -u "${SERVICE_USER}" git clone \ "${GITEA_REPO}" "${REPO_DIR}" fi LATEST_TAG=$(sudo -u "${SERVICE_USER}" \ git -C "${REPO_DIR}" tag --list --sort=-version:refname "v*" | head -1) if [ -n "${LATEST_TAG}" ]; then sudo -u "${SERVICE_USER}" git -C "${REPO_DIR}" checkout --detach "${LATEST_TAG}" fi # ── Decrypt secrets ─────────────────────────────────────────────────────────── sudo -u "${SERVICE_USER}" bash -c \ "sops --input-type dotenv --output-type dotenv -d ${REPO_DIR}/.env.prod.sops > ${REPO_DIR}/.env" chmod 600 "${REPO_DIR}/.env" # ── Python dependencies ─────────────────────────────────────────────────────── sudo -u "${SERVICE_USER}" bash -c "cd ${REPO_DIR} && ${UV} sync --all-packages" # ── rclone config (r2-landing remote) ──────────────────────────────────────── _env_get() { grep -E "^${1}=" "${REPO_DIR}/.env" 2>/dev/null | head -1 | cut -d= -f2- | tr -d '"'"'" || true; } R2_LANDING_KEY=$(_env_get R2_LANDING_ACCESS_KEY_ID) R2_LANDING_SECRET=$(_env_get R2_LANDING_SECRET_ACCESS_KEY) R2_ENDPOINT=$(_env_get R2_ENDPOINT) if [ -n "${R2_LANDING_KEY}" ] && [ -n "${R2_LANDING_SECRET}" ] && [ -n "${R2_ENDPOINT}" ]; then RCLONE_CONF_DIR="/home/${SERVICE_USER}/.config/rclone" RCLONE_CONF="${RCLONE_CONF_DIR}/rclone.conf" sudo -u "${SERVICE_USER}" mkdir -p "${RCLONE_CONF_DIR}" grep -v '^\[r2-landing\]' "${RCLONE_CONF}" 2>/dev/null > "${RCLONE_CONF}.tmp" || true cat >> "${RCLONE_CONF}.tmp" < rclone [r2-landing] remote configured." else echo "$(date '+%H:%M:%S') ==> R2_LANDING_* not set — skipping rclone config." fi # ── Systemd services ────────────────────────────────────────────────────────── cp "${REPO_DIR}/infra/landing-backup/padelnomics-landing-backup.service" /etc/systemd/system/ cp "${REPO_DIR}/infra/landing-backup/padelnomics-landing-backup.timer" /etc/systemd/system/ cp "${REPO_DIR}/infra/supervisor/padelnomics-supervisor.service" /etc/systemd/system/ systemctl daemon-reload systemctl enable --now padelnomics-landing-backup.timer systemctl enable --now padelnomics-supervisor echo "" echo "=== Bootstrap complete! ===" echo "" echo "Check status: systemctl status padelnomics-supervisor" echo "View logs: journalctl -u padelnomics-supervisor -f" echo "Backup timer: systemctl list-timers padelnomics-landing-backup.timer" echo "Tag: $(sudo -u "${SERVICE_USER}" git -C "${REPO_DIR}" describe --tags --always)"