From 7d627d16cd4bb88e625291dff4cc886c68dbf785 Mon Sep 17 00:00:00 2001 From: Peter Stone Date: Mon, 16 Mar 2026 08:53:44 +0000 Subject: chore: migrate deploy + ops scripts from SSH to local execution Replace SSH-based deploy.sh with scripts/deploy that runs locally on the server. Update scripts/bugs, scripts/logs, and scripts/resolve-bug to drop SSH wrappers. Update CLAUDE.md and DESIGN.md to reflect new local workflow. Co-Authored-By: Claude Sonnet 4.6 --- scripts/resolve-bug | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'scripts/resolve-bug') diff --git a/scripts/resolve-bug b/scripts/resolve-bug index a3f0979..1fcf5df 100755 --- a/scripts/resolve-bug +++ b/scripts/resolve-bug @@ -10,10 +10,10 @@ BUG_ID="$1" # Show the bug being resolved echo "Resolving bug #$BUG_ID:" -ssh titanium "sqlite3 -column /site/doot.terst.org/data/dashboard.db \"SELECT description FROM bugs WHERE id = $BUG_ID\"" +sqlite3 -column /site/doot.terst.org/data/dashboard.db "SELECT description FROM bugs WHERE id = $BUG_ID" # Delete the bug -ssh titanium "sqlite3 /site/doot.terst.org/data/dashboard.db \"DELETE FROM bugs WHERE id = $BUG_ID\"" +sqlite3 /site/doot.terst.org/data/dashboard.db "DELETE FROM bugs WHERE id = $BUG_ID" if [ $? -eq 0 ]; then echo "Bug #$BUG_ID resolved." -- cgit v1.2.3