all repos — caroster @ a842e21d6d50d3e21f21fa99691d9d7f7e0160cb

[Octree] Group carpool to your event https://caroster.io

config/functions/cron.js (view raw)

 1'use strict';
 2
 3/**
 4 * Cron config that gives you an opportunity
 5 * to run scheduled jobs.
 6 *
 7 * The cron format consists of:
 8 * [SECOND (optional)] [MINUTE] [HOUR] [DAY OF MONTH] [MONTH OF YEAR] [DAY OF WEEK]
 9 *
10 * See more details here: https://strapi.io/documentation/v3.x/concepts/configurations.html#cron-tasks
11 */
12
13module.exports = {
14  /**
15   * Simple example.
16   * Every monday at 1am.
17   */
18  // '0 1 * * 1': () => {
19  //
20  // }
21};