You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
1003 B
26 lines
1003 B
|
|
let TEST = true
|
|
TEST = false
|
|
|
|
module.exports = {
|
|
conf: {
|
|
interval: '0 */1 * * * *',
|
|
/**
|
|
* * * * * * *
|
|
┬ ┬ ┬ ┬ ┬ ┬
|
|
│ │ │ │ │ │
|
|
│ │ │ │ │ └ day of week (0 - 7) (0 or 7 is Sun)
|
|
│ │ │ │ └───── month (1 - 12)
|
|
│ │ │ └────────── day of month (1 - 31)
|
|
│ │ └─────────────── hour (0 - 23)
|
|
│ └──────────────────── minute (0 - 59)
|
|
└───────────────────────── second (0 - 59, OPTIONAL)
|
|
*/
|
|
immediate: TEST,
|
|
env: [TEST ? 'dev' : 'prod'],
|
|
disabled: true
|
|
},
|
|
callback: function async (app, conf) {
|
|
console.log('@peace schedule');
|
|
},
|
|
};
|
|
|