CRON on Deploy
Hey, is CRON working fine on Deploy? Maybe I don't know how to use it. I have created a file cron.ts a put there:
Deno.cron('Run once a minute', '* * * * *', () => {
console.log('Hello, cron!');
});
It deployed on prod but there is nothing in CRON tab.
0 Replies