Small Bree based job runner + gui
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

heartbeat.js 275B

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