← back to SmokeShop
untrack sqlite wal/shm transient files + broaden gitignore for snapshot patterns
ea54425e43ff76e385a64f26a446a717782c6fb1 · 2026-05-19 21:24:47 -0700 · Steve Abrams
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
Files touched
M .gitignoreD db/smokeshop.db-shmD db/smokeshop.db-wal
Diff
commit ea54425e43ff76e385a64f26a446a717782c6fb1
Author: Steve Abrams <steve@designerwallcoverings.com>
Date: Tue May 19 21:24:47 2026 -0700
untrack sqlite wal/shm transient files + broaden gitignore for snapshot patterns
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
---
.gitignore | 18 +++++++++++++++---
db/smokeshop.db-shm | Bin 32768 -> 0 bytes
db/smokeshop.db-wal | Bin 688072 -> 0 bytes
3 files changed, 15 insertions(+), 3 deletions(-)
diff --git a/.gitignore b/.gitignore
index 7f1d76b..5347f8f 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,15 +1,27 @@
node_modules/
.env
+.env.*
+.env.local
+.env.*.local
db/smokeshop.db
+db/*.db
+db/*.db-shm
+db/*.db-wal
+db/*.db-journal
generated/
public/uploads/
*.log
-.env.local
-.env.*.local
-.env.*
tmp/
.DS_Store
dist/
build/
.next/
+
+# Snapshot / backup / scratch files
*.bak
+*.bak.*
+*.pre-*
+*.orig
+*.rej
+*.swp
+*~
diff --git a/db/smokeshop.db-shm b/db/smokeshop.db-shm
deleted file mode 100644
index 9d9825f..0000000
Binary files a/db/smokeshop.db-shm and /dev/null differ
diff --git a/db/smokeshop.db-wal b/db/smokeshop.db-wal
deleted file mode 100644
index cd46f23..0000000
Binary files a/db/smokeshop.db-wal and /dev/null differ
← 6bf7b90 snapshot: 2 file(s) changed, ~2 modified
·
back to SmokeShop
·
add 404-guard middleware before express.static to refuse ser 7115e4d →