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>
39 lines
480 B
Plaintext
39 lines
480 B
Plaintext
# dependencies
|
|
node_modules/
|
|
|
|
# env files (never commit real secrets — .env.example files are fine)
|
|
.env
|
|
.env.*
|
|
!.env.example
|
|
|
|
# IDE
|
|
.idea/
|
|
.vscode/
|
|
|
|
# next.js
|
|
.next/
|
|
out/
|
|
|
|
# build output
|
|
dist/
|
|
build/
|
|
|
|
# logs
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
*.log
|
|
|
|
# typescript
|
|
*.tsbuildinfo
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# misc scratch / generated files
|
|
temp/
|
|
backend/public/uploads/
|
|
|
|
# runtime data stores (mutated by the running app, not source)
|
|
backend/data/scheduled-emails.json |