From f63d615364b72feaa0c6057564db4cacfd3bf3a1 Mon Sep 17 00:00:00 2001 From: Lukas Date: Fri, 9 Jan 2026 19:20:37 +0100 Subject: [PATCH] Update .gitignore to exclude db, config, logs, and temp folders --- .gitignore | 23 ++++++++++++++++++++++- 1 file changed, 22 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 9b5958e..03eb4c5 100644 --- a/.gitignore +++ b/.gitignore @@ -51,12 +51,33 @@ wheels/ .installed.cfg *.egg -# Database +# Database files (including SQLite journal/WAL files) *.db +*.db-shm +*.db-wal +*.db-journal *.sqlite *.sqlite3 +*.sqlite-shm +*.sqlite-wal +*.sqlite-journal +data/*.db* +data/aniworld.db* + +# Configuration files (exclude from git, keep backups local) +data/config.json +data/config_backups/ +config.json +*.config # Logs *.log logs/ +src/cli/logs/ *.log.* + +# Temp folders +Temp/ +temp/ +tmp/ +*.tmp