Link Search Menu Expand Document

Cronjobs

// Models
import DogsBusiness from '@/business/dogs.business';
// Libs
import cron from 'node-cron';

// Execute At minute 7 past every 6th hour.
cron.schedule('07 */6 * * *', async () => {
  await DogsBusiness.getAll();
});

Tips

// Run script only on specific PM2 instance
if (process.env.NODE_APP_INSTANCE === '0') {
  console.log('hello world');
}