From cfa2d2990c97fdd5cc437a93d928ca700cb14fa0 Mon Sep 17 00:00:00 2001 From: Jannis Braun <151788261+TheZwiss@users.noreply.github.com> Date: Tue, 7 Apr 2026 17:34:13 +0200 Subject: [PATCH] fix: exclude dev-only files from deployment rsync MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Artworks, .claude, .worktrees, .playwright-mcp, docs/internal, design prototype, and architecture audit are dev-only — no need on production servers. packages/desktop was already excluded but stale copies persisted on remotes. --- deploy.sh | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/deploy.sh b/deploy.sh index 4304d95d..7eb4e83e 100755 --- a/deploy.sh +++ b/deploy.sh @@ -41,11 +41,16 @@ EXCLUDES=( --exclude='livekit.yaml' --exclude='.DS_Store' --exclude='.superpowers' - --exclude='Gemini Starter.rtf' - --exclude='System Prompt.rtf' + --exclude='.claude' + --exclude='.worktrees' + --exclude='.playwright-mcp' + --exclude='Artworks-Backspace' --exclude='Old Designs' --exclude='outdated trash' + --exclude='docs/superpowers' --exclude='*.rtf' + --exclude='ARCHITECTURE_AUDIT.md' + --exclude='Backspace-design-prototype.html' ) # ── Deploy function ─────────────────────────────────────────