mirror of
https://github.com/strapi/strapi.git
synced 2025-07-07 17:12:33 +00:00
22 lines
333 B
JavaScript
Executable File
22 lines
333 B
JavaScript
Executable File
'use strict';
|
|
|
|
/**
|
|
* Cron config that gives you an opportunity
|
|
* to run scheduled jobs.
|
|
*
|
|
* The cron format consists of:
|
|
* [MINUTE] [HOUR] [DAY OF MONTH] [MONTH OF YEAR] [DAY OF WEEK] [YEAR (optional)]
|
|
*/
|
|
|
|
module.exports = {
|
|
|
|
/**
|
|
* Simple example.
|
|
* Every monday at 1am.
|
|
*/
|
|
|
|
// '0 1 * * 1': () => {
|
|
//
|
|
// }
|
|
};
|