Stop tracking SQLite WAL/SHM runtime files.

Extend gitignore so local database sidecars are not committed.

Co-authored-by: Cursor <cursoragent@cursor.com>
main
sheheryarsoomro12 2026-07-29 18:07:50 +05:00
parent bf0cdc14c3
commit 73a004d2e1
4 changed files with 4 additions and 0 deletions

2
.gitignore vendored
View File

@ -57,6 +57,8 @@ build/
**/data/uploads/
**/data/exports/
**/*.db
**/*.db-shm
**/*.db-wal
**/*.sqlite
**/*.sqlite3

View File

@ -12,6 +12,8 @@ venv/
*.csv
!tests/fixtures/*.xlsx
backend/data/*.db
backend/data/*.db-shm
backend/data/*.db-wal
backend/data/uploads/
backend/data/exports/
uploads/