Files
batch-bot/.gitignore
bilal bb27161524 Final release: Multi-session comment bot with filtering
Features:
- Multi-account support (session files)
- AI comments via Ollama
- Telegram bot moderation
- Filter by sessions and groups
- Docker support
- Auto-join groups
- Log notifications
- DB migration script

Bug fixes:
- Fixed comment_to for proper post targeting
- Fixed entity lookup with multiple ID formats
- Fixed callback handlers for filtering
- Added auto-join before entity lookup
2026-02-28 01:44:40 +03:00

77 lines
647 B
Plaintext

# Python
__pycache__/
*.py[cod]
*$py.class
*.so
.Python
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
*.egg-info/
.installed.cfg
*.egg
# Virtual environments
venv/
env/
ENV/
.venv
# Environment variables
.env
.env.local
.env.*.local
# Database
*.db
*.sqlite
*.sqlite3
data/
# Sessions
sessions/*.session
sessions/*.session-journal
*.session
# Logs
logs/
*.log
# Docker
.dockerignore
# IDE
.idea/
.vscode/
*.swp
*.swo
*~
# macOS
.DS_Store
# Testing
.pytest_cache/
.coverage
htmlcov/
# Documentation
docs/_build/
# Temporary files
tmp/
temp/
*.tmp
# Migration scripts (optional)
migrate_db.py