[object Object]

← back to Daily Overnight Skus

run.sh: stop hardcoding George basic-auth — load GMAIL_BASIC_AUTH_B64 from secrets-manager/.env (env-first)

38cce6f5106ed221a971dfe98ba9e3ffd074bdac · 2026-06-02 09:23:55 -0700 · SteveStudio2

Files touched

Diff

commit 38cce6f5106ed221a971dfe98ba9e3ffd074bdac
Author: SteveStudio2 <steve@designerwallcoverings.com>
Date:   Tue Jun 2 09:23:55 2026 -0700

    run.sh: stop hardcoding George basic-auth — load GMAIL_BASIC_AUTH_B64 from secrets-manager/.env (env-first)
---
 run.sh | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/run.sh b/run.sh
index 93b263b..02b1155 100755
--- a/run.sh
+++ b/run.sh
@@ -14,9 +14,10 @@ set -a
 . /Users/stevestudio2/Projects/secrets-manager/.env 2>/dev/null
 set +a
 export GMAIL_AGENT='http://100.107.67.67:9850'
-# George basic-auth — pulled from ~/.claude.json MCP env block (rotates;
-# update both here and ~/.claude.json if George rotates the password).
-export GMAIL_BASIC_AUTH_B64='YWRtaW46STNZdXNpc2RFU1VOZHh0cm1sYjNRSmV1OXE4T0RLSk8='
+# George basic-auth (GMAIL_BASIC_AUTH_B64) is loaded from
+# secrets-manager/.env above — no longer hardcoded here. If George rotates
+# the password, update secrets-manager/.env (and ~/.claude.json MCP env).
+: "${GMAIL_BASIC_AUTH_B64:?GMAIL_BASIC_AUTH_B64 not set — add it to secrets-manager/.env}"
 
 # Overnight window: yesterday 5pm PT -> today 6:30am PT.
 # Job fires at 6:30 AM PT Tue-Sat, so each run captures the prior

← c827f30 fix stale run.sh header comment to match the 6:30 AM overnig  ·  back to Daily Overnight Skus  ·  add one-shot self-check: verifies the revived overnight run 9db9db6 →