config.py now imports config_local.py at the bottom if present (gitignored). Sensitive defaults (real archive passwords, personal tdl namespace) removed from config.py and documented in config_local.py.example instead. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
31 lines
345 B
Plaintext
31 lines
345 B
Plaintext
# Sessions
|
|
*.session
|
|
*.session-journal
|
|
bot_session*
|
|
.claude/*
|
|
|
|
# logs: keep the folder, ignore contents
|
|
logs/*
|
|
|
|
# Data: keep the folder, ignore contents
|
|
data/*
|
|
data/hits.db
|
|
data/hits.txt
|
|
data/hits.csv
|
|
data/dedup.json
|
|
data/cache.json
|
|
data/tmp/
|
|
data/logs/
|
|
!data/.gitkeep
|
|
|
|
# Env
|
|
.env
|
|
config_local.py
|
|
|
|
# Python
|
|
__pycache__/
|
|
*.pyc
|
|
*.pyo
|
|
.venv/
|
|
venv/
|