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 <noreply@anthropic.com>
This commit is contained in:
2026-08-07 00:03:04 +02:00
co-authored by Claude Sonnet 5
parent 22ffbf201e
commit 7906248c67
2 changed files with 4 additions and 4 deletions
+4 -1
View File
@@ -33,4 +33,7 @@ Thumbs.db
# misc scratch / generated files
temp/
backend/public/uploads/
backend/public/uploads/
# runtime data stores (mutated by the running app, not source)
backend/data/scheduled-emails.json
-3
View File
@@ -1,3 +0,0 @@
{
"jobs": []
}