chore: update .gitignore for database journals
Some checks are pending
Docker / build (push) Waiting to run
Some checks are pending
Docker / build (push) Waiting to run
Add *.sqlite3-journal to .gitignore to prevent SQLite journal files from being tracked by version control. This helps in maintaining a cleaner repository by excluding temporary files generated during database transactions.
This commit is contained in:
parent
06794c3cea
commit
dcaf953a04
1 changed files with 1 additions and 0 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -1,6 +1,7 @@
|
|||
__pycache__/
|
||||
venv/
|
||||
*.sqlite3
|
||||
*.sqlite3-journal
|
||||
migrations/
|
||||
data/
|
||||
.vscode/
|
Loading…
Reference in a new issue