How to set a cron job in TypeScript
You can set each Workflow to repeat on a schedule with the cronSchedule
option:
const handle = await client.start(scheduledWorkflow, {
// ...
cronSchedule: '* * * * *', // start every minute
});
You can set each Workflow to repeat on a schedule with the cronSchedule
option:
const handle = await client.start(scheduledWorkflow, {
// ...
cronSchedule: '* * * * *', // start every minute
});