chore: ignore SQLite temporary files and database files

- Add SQLite WAL and SHM file patterns to gitignore
- Include main database files to prevent accidental commits
- Ensures database state doesn't get committed to version control
This commit is contained in:
Jeremie Fraeys 2025-12-04 16:56:45 -05:00
parent e5dcb347d8
commit d5aae02ba0

5
.gitignore vendored
View file

@ -222,3 +222,8 @@ zig-out/
# Experiment data (local testing)
experiments/
data/
# SQLite temporary files
db/*.db-shm
db/*.db-wal
db/*.db