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:
parent
e5dcb347d8
commit
d5aae02ba0
1 changed files with 5 additions and 0 deletions
5
.gitignore
vendored
5
.gitignore
vendored
|
|
@ -222,3 +222,8 @@ zig-out/
|
||||||
# Experiment data (local testing)
|
# Experiment data (local testing)
|
||||||
experiments/
|
experiments/
|
||||||
data/
|
data/
|
||||||
|
|
||||||
|
# SQLite temporary files
|
||||||
|
db/*.db-shm
|
||||||
|
db/*.db-wal
|
||||||
|
db/*.db
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue