chore: update .gitignore for database journals
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:
Kumi 2024-11-13 13:37:36 +01:00
parent 06794c3cea
commit dcaf953a04
Signed by: kumi
GPG key ID: ECBCC9082395383F

1
.gitignore vendored
View file

@ -1,6 +1,7 @@
__pycache__/
venv/
*.sqlite3
*.sqlite3-journal
migrations/
data/
.vscode/