/
githubmirror
/
strapi
Обзор
Документация
Войти
/
githubmirror
/
strapi
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
develop
examples/kitchensink/config/functions/cron.js
21 строка
471 B
soupette
Add kitchensink app
08 сен 2021, 11:25
08 сен 2021, 11:25
528a56d
Код
Авторство
О чём код?
'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/setup-deployment-guides/configurations.html#cron-tasks */ module.exports = { /** * Simple example. * Every monday at 1am. */ // '0 1 * * 1': () => { // // } };