🦀 ClawHub
cron-copilot-ops
by @eden2f
Install, configure, and operate CronCopilot — a Python-based scheduled task management system for cron jobs, scripts, monitoring, and alerts.
💡 Examples
# Clone the repository
git clone https://gitee.com/eden2f/cron-copilot.git
cd cron-copilotProduction install (recommended for deployment)
pip install .Development install (editable mode, changes take effect immediately)
pip install -e .Development install with dev dependencies
pip install -e ".[dev]"Initialize CronCopilot (creates config and database)
croncopilot init
After initialization, start the scheduler:
croncopilot start # foreground mode
croncopilot start --daemon # background daemon mode
TERMINAL
clawhub install cron-copilot-ops