build: ignore SQLite WAL and shared memory files

engram.db-shm and engram.db-wal are ephemeral SQLite WAL mode artifacts.
They were being committed daily by auto-repair since at least 2026-03-30.
Added *.db-shm and *.db-wal to .gitignore and removed from index.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Claude 2026-05-15 06:05:36 +00:00
parent c1d50e2d53
commit 467e30ab92
3 changed files with 4 additions and 0 deletions

4
.gitignore vendored
View File

@ -3,3 +3,7 @@ __pycache__/
data/ data/
*.egg-info/ *.egg-info/
.env .env
# SQLite WAL mode ephemeral files — never track these
*.db-shm
*.db-wal

Binary file not shown.

Binary file not shown.