Stop tracking SQLite WAL/SHM runtime files.
Extend gitignore so local database sidecars are not committed. Co-authored-by: Cursor <cursoragent@cursor.com>main
parent
bf0cdc14c3
commit
73a004d2e1
|
|
@ -57,6 +57,8 @@ build/
|
||||||
**/data/uploads/
|
**/data/uploads/
|
||||||
**/data/exports/
|
**/data/exports/
|
||||||
**/*.db
|
**/*.db
|
||||||
|
**/*.db-shm
|
||||||
|
**/*.db-wal
|
||||||
**/*.sqlite
|
**/*.sqlite
|
||||||
**/*.sqlite3
|
**/*.sqlite3
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -12,6 +12,8 @@ venv/
|
||||||
*.csv
|
*.csv
|
||||||
!tests/fixtures/*.xlsx
|
!tests/fixtures/*.xlsx
|
||||||
backend/data/*.db
|
backend/data/*.db
|
||||||
|
backend/data/*.db-shm
|
||||||
|
backend/data/*.db-wal
|
||||||
backend/data/uploads/
|
backend/data/uploads/
|
||||||
backend/data/exports/
|
backend/data/exports/
|
||||||
uploads/
|
uploads/
|
||||||
|
|
|
||||||
Binary file not shown.
Binary file not shown.
Loading…
Reference in New Issue