Update .gitignore to exclude db, config, logs, and temp folders
This commit is contained in:
parent
2a85a2bc18
commit
f63d615364
23
.gitignore
vendored
23
.gitignore
vendored
@ -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
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user