← back to Rentv
chore: gitignore logs/ (runtime cron .out output leaked past *.log rule)
cd8a93794973f4627451b49c384efafee9c186f2 · 2026-08-08 08:43:40 -0700 · Steve Abrams
logs/topup-run.out (a .out, not .log) showed as untracked, risking a future
git add -A committing runtime cron output. Ignore the whole logs/ dir.
(Comment on its own line — .gitignore has no inline-comment support.)
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
Files touched
Diff
commit cd8a93794973f4627451b49c384efafee9c186f2
Author: Steve Abrams <steve@designerwallcoverings.com>
Date: Sat Aug 8 08:43:40 2026 -0700
chore: gitignore logs/ (runtime cron .out output leaked past *.log rule)
logs/topup-run.out (a .out, not .log) showed as untracked, risking a future
git add -A committing runtime cron output. Ignore the whole logs/ dir.
(Comment on its own line — .gitignore has no inline-comment support.)
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
---
.gitignore | 2 ++
1 file changed, 2 insertions(+)
diff --git a/.gitignore b/.gitignore
index 127a72e6..457c0727 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,6 +1,8 @@
node_modules/
.env*
*.log
+# runtime cron output dir (.log + .out) — never commit
+logs/
.DS_Store
data/subscribers.jsonl
data/advertise-inquiries.jsonl
← 2382432b test(pr): harden throwaway-DB reset against lingering connec
·
back to Rentv
·
test(api): lock validation contract on public PII-write endp 83d6d662 →