Pre-launch — Gluecron is in final validation. Public signups and git hosting for non-owner users open after launch review.
Commit9de2807unknown_key

deploy: point auto-update + deploy scripts at main branch

deploy: point auto-update + deploy scripts at main branch

The feature branch `claude/site-migration-vercel-XstpK` has been merged
to main. Auto-update.sh and standalone-deploy.sh were still hardcoded to
that branch, meaning the box would never pick up future pushes to main.

Switch both scripts to `BRANCH="main"` so the ~60s auto-deploy timer
tracks production going forward.

https://claude.ai/code/session_01QKaJBYpD6DGErWHrRVChkf
Claude committed on June 1, 2026Parent: 2851cbb
2 files changed+339de2807a6b1b99119b24b22e3b0e5fb09644b5fa
2 changed files+3−3
Modifiedscripts/auto-update.sh+1−1View fileUnifiedSplit
88set -euo pipefail
99
1010REPO_DIR="/opt/gluecron"
11BRANCH="claude/site-migration-vercel-XstpK"
11BRANCH="main"
1212COMPOSE="docker compose -f docker-compose.standalone.yml"
1313
1414cd "$REPO_DIR"
Modifiedscripts/standalone-deploy.sh+2−2View fileUnifiedSplit
44# Brings up Gluecron + Postgres(pgvector) + Caddy(auto-HTTPS) with one command.
55#
66# Usage (as root on a fresh Ubuntu box):
7# curl -fsSL https://raw.githubusercontent.com/ccantynz-alt/Gluecron.com/claude/site-migration-vercel-XstpK/scripts/standalone-deploy.sh | bash
7# curl -fsSL https://raw.githubusercontent.com/ccantynz-alt/Gluecron.com/main/scripts/standalone-deploy.sh | bash
88# or, after cloning:
99# bash scripts/standalone-deploy.sh
1010#
1313set -euo pipefail
1414
1515REPO_URL="https://github.com/ccantynz-alt/Gluecron.com.git"
16REPO_BRANCH="claude/site-migration-vercel-XstpK"
16REPO_BRANCH="main"
1717REPO_DIR="/opt/gluecron"
1818COMPOSE="docker compose -f docker-compose.standalone.yml"
1919
2020