From 7906248c6779477979c245f4cf4996a61b37f225 Mon Sep 17 00:00:00 2001 From: joshua Date: Fri, 7 Aug 2026 00:03:04 +0200 Subject: [PATCH] Stop tracking scheduled-emails.json runtime data store It's mutated by the running app (scheduled job queue), not source - committing it churns the repo with live recipient/message content. Kept on disk, just untracked; a fresh checkout will get an empty store created on demand by ensureStore(). Co-Authored-By: Claude Sonnet 5 --- .gitignore | 5 ++++- backend/data/scheduled-emails.json | 3 --- 2 files changed, 4 insertions(+), 4 deletions(-) delete mode 100644 backend/data/scheduled-emails.json diff --git a/.gitignore b/.gitignore index 176d8f6..1e8b537 100644 --- a/.gitignore +++ b/.gitignore @@ -33,4 +33,7 @@ Thumbs.db # misc scratch / generated files temp/ -backend/public/uploads/ \ No newline at end of file +backend/public/uploads/ + +# runtime data stores (mutated by the running app, not source) +backend/data/scheduled-emails.json \ No newline at end of file diff --git a/backend/data/scheduled-emails.json b/backend/data/scheduled-emails.json deleted file mode 100644 index 5d591f6..0000000 --- a/backend/data/scheduled-emails.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "jobs": [] -} \ No newline at end of file