Small Bree based job runner + gui
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

setup.js 293B

12345678910111213141516
  1. const path = require('path')
  2. const jobDef = {
  3. timeout: '1s',
  4. }
  5. /**
  6. * Actual job instructions
  7. */
  8. const jobRun = () => {
  9. console.log('---')
  10. console.log('bree started...')
  11. console.log('---')
  12. }
  13. jobRun()
  14. module.exports = { jobName: path.basename(__filename, '.js'), ...jobDef }