Update .gitignore to exclude db, config, logs, and temp folders

This commit is contained in:
Lukas 2026-01-09 19:20:37 +01:00
parent 2a85a2bc18
commit f63d615364

23
.gitignore vendored
View File

@ -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