Heavily commented config.yaml and config/ directory serve as a copy-paste starting point for any new site to monitor. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
52 lines
602 B
Text
52 lines
602 B
Text
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*.pyo
|
|
*.pyd
|
|
.Python
|
|
*.egg-info/
|
|
dist/
|
|
build/
|
|
.eggs/
|
|
*.egg
|
|
|
|
# Virtual environments
|
|
venv/
|
|
.venv/
|
|
env/
|
|
.env/
|
|
|
|
# Tests / Coverage
|
|
.pytest_cache/
|
|
.coverage
|
|
htmlcov/
|
|
.tox/
|
|
|
|
# Site-Daten (nie committen — enthalten Crawl-Daten und Snapshots)
|
|
bredelar.info/data/
|
|
bredelar.info/reports/
|
|
bredelar.info/logs/
|
|
jamulix.de/data/
|
|
jamulix.de/reports/
|
|
jamulix.de/logs/
|
|
example.com/data/
|
|
example.com/reports/
|
|
example.com/logs/
|
|
|
|
# Editor
|
|
.idea/
|
|
.vscode/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Secrets (extra safeguard)
|
|
*.env
|
|
.env.*
|
|
|
|
# Claude Code instructions (local only)
|
|
CLAUDE.md
|