mirror of
https://github.com/strapi/strapi.git
synced 2025-07-08 09:33:26 +00:00
22 lines
344 B
JavaScript
22 lines
344 B
JavaScript
![]() |
'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.cron = {
|
||
|
|
||
|
/**
|
||
|
* Simple example.
|
||
|
* Every monday at 1am.
|
||
|
*/
|
||
|
|
||
|
// '0 1 * * 1': function () {
|
||
|
//
|
||
|
// }
|
||
|
};
|