Cron job plugin for PayloadCms.
A plugin for Payload CMS that adds collections and UI components to manage cron jobs with activity logs.
- Payload version 2.28.0 or higher is required.
npm i @websolutespa/payload-plugin-cron-job
import { buildConfig } from 'payload/config';
import { clearLogs, cronJob } from '@websolutespa/payload-plugin-cron-job';
export default buildConfig({
plugins: [
cronJob({
jobs: {
alwaysOn: {
execute: (payload: Payload) => {
console.log('ScheduledTask.alwaysOn every 5 minutes');
},
cron: '*/5 * * * *',
},
clearLogs: {
execute: async (payload: Payload) => {
console.log('ScheduledTask.clearLogs every sunday at 01:00');
return await clearLogs(payload);
},
cron: '0 1 * * 0',
},
},
}),
]
});
property | description |
---|---|
jobs | an object containing methods to run scheduled, each method is an object with an execute handler and a cron unix-cron string format |