kaneo (minimalist kanban) fork to experiment adding a tangled integration github.com/usekaneo/kaneo
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at cd7cada2f86b4e866a15b4323bb8d6d7ab5bba8b 16 lines 420 B view raw
1import { Cron } from "croner"; 2import { checkDueDateReminders } from "./due-date-reminders"; 3 4const jobs: Cron[] = []; 5 6export function initializeScheduler(): void { 7 jobs.push(new Cron("*/5 * * * *", checkDueDateReminders)); 8 console.log("⏰ Scheduler started (due date reminders every 5 minutes)"); 9} 10 11export function shutdownScheduler(): void { 12 for (const job of jobs) { 13 job.stop(); 14 } 15 jobs.length = 0; 16}