all repos — caroster @ ef021dd22d5d4f31ba339fb1e44dcdc743d64f8f

[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};