⏰
havn cron
AutomationSchedule and manage recurring jobs
Overview
Define cron jobs that run inside your application's environment. View execution history, retry failed runs, and receive alerts on repeated failures.
Usage
havn cron add "<schedule>" <command> | havn cron listFeatures
- ✓Standard cron expression syntax
- ✓Full execution history
- ✓Manual trigger for any job
- ✓Retry on failure with backoff
- ✓Timeout & concurrency controls
Example
~ havn-shell
$ havn cron add "0 2 * * *" "node scripts/cleanup.js" ✔ Cron job added (ID: cron_8f2a) $ havn cron list ID SCHEDULE COMMAND LAST RUN STATUS cron_8f2a 0 2 * * * node scripts/cleanup.js 02:00:04 ✔ ok