- Add heartbeat configuration to config.yaml - Implement HeartbeatMonitor class in watch.py - Send heartbeat every 40 seconds to Uptime Kuma push endpoint - Update config.yaml.example with heartbeat settings - Add heartbeat logging at INFO level Co-Authored-By: Claude <noreply@anthropic.com>
38 lines
311 B
Plaintext
38 lines
311 B
Plaintext
# Virtual environment
|
|
.venv/
|
|
|
|
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.egg-info/
|
|
dist/
|
|
build/
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
|
|
# OS
|
|
Thumbs.db
|
|
Desktop.ini
|
|
.DS_Store
|
|
|
|
# Logs
|
|
logs/
|
|
*.log
|
|
watch.log
|
|
|
|
# Environment variables / secrets
|
|
.env
|
|
.env.*
|
|
config.yaml
|
|
|
|
# Excel temp files
|
|
Excel/
|
|
*.tmp
|
|
|
|
.claude/
|
|
.agents/ |