mirror of
https://github.com/strapi/strapi.git
synced 2025-10-03 04:13:51 +00:00

* [WIP] Cleaning up codebase for doc repo move WIP * Fix deleted files, add links to doc repo issues * Add repo note to readme
22 lines
456 B
JavaScript
22 lines
456 B
JavaScript
'use strict';
|
|
|
|
/**
|
|
* Cron config that gives you an opportunity
|
|
* to run scheduled jobs.
|
|
*
|
|
* The cron format consists of:
|
|
* [SECOND (optional)] [MINUTE] [HOUR] [DAY OF MONTH] [MONTH OF YEAR] [DAY OF WEEK]
|
|
*
|
|
* See more details here: https://strapi.io/documentation/developer-docs/latest/concepts/configurations.html#cron-tasks
|
|
*/
|
|
|
|
module.exports = {
|
|
/**
|
|
* Simple example.
|
|
* Every monday at 1am.
|
|
*/
|
|
// '0 1 * * 1': () => {
|
|
//
|
|
// }
|
|
};
|