- BullMQ-backed cron scheduling (Redis persistence, stall detection, retries) - New /ui/cron/ Lit-based management UI - Configurable via cron.redisUrl, cron.workerConcurrency, etc. - Falls back to timer-based if CLAWDBOT_CRON_BACKEND=timer - Redis auth support (username/password from URL) - Fixed race condition in start() by copying jobs array - Fixed silent failure when job disappears during execution
17 lines
399 B
HTML
17 lines
399 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>Cron Jobs — Moltbot</title>
|
|
<style>
|
|
* { margin: 0; padding: 0; box-sizing: border-box; }
|
|
body { background: #18181b; }
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<cron-app></cron-app>
|
|
<script type="module" src="./index.ts"></script>
|
|
</body>
|
|
</html>
|