- Remove agent/agent.md (dev-time agent context dumps), .DS_Store, committed venv configs (pyvenv.cfg), 0-byte runtime cache - Remove hardcoded /home/userpath from cron_scraper feed lookup - Replace ad-hoc test_implementation.py with pytest tests/test_scraper_cache.py - ruff clean (33 fixes: bare excepts, unused Config, whitespace) - Root pyproject.toml (activates shared Gitea CI), MIT LICENSE, README Tests
33 lines
398 B
Plaintext
33 lines
398 B
Plaintext
# Anything from venv
|
|
**/bin/*
|
|
**/include/*
|
|
**/lib/*
|
|
**/lib64/*
|
|
**/lib64/
|
|
**/lib64
|
|
**/share/*
|
|
**/__pycache__/*
|
|
|
|
# Anything from MCPServer
|
|
MCPServer/cache/*
|
|
MCPServer/lib64/*
|
|
|
|
# Anything from Scraper
|
|
scraper/articles/*
|
|
|
|
# Anything from AI Process
|
|
ai_processor/output/*
|
|
|
|
# Anything from running processes in the background
|
|
nohup.out
|
|
|
|
*.pyc
|
|
|
|
*.log
|
|
|
|
.DS_Store
|
|
|
|
pyvenv.cfg
|
|
|
|
processed_articles_cache.json
|