symbiont/.gitignore
Claude 467e30ab92 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>
2026-05-15 06:05:36 +00:00

10 lines
117 B
Plaintext

__pycache__/
*.pyc
data/
*.egg-info/
.env
# SQLite WAL mode ephemeral files — never track these
*.db-shm
*.db-wal