Files
planilla/worker/cron-worker.js
josedario87 0c170bfa1a
Some checks failed
build-and-push / build (push) Successful in 1m36s
build-and-push / deploy (push) Failing after 14s
worker mejorado
2025-05-14 16:23:36 -06:00

9 lines
191 B
JavaScript

//cron-worker.js just prints the current date and time every 5 seconds
import cron from 'node-cron';
cron.schedule('*/5 * * * * *', () => {
console.log(new Date().toLocaleString());
});