Skip to content

Instantly share code, notes, and snippets.

@demirtasdurmus
Created April 14, 2022 00:19
Show Gist options
  • Save demirtasdurmus/403c9683dcdc40c3452e46dfc541d7bd to your computer and use it in GitHub Desktop.
Save demirtasdurmus/403c9683dcdc40c3452e46dfc541d7bd to your computer and use it in GitHub Desktop.
const { exec } = require('child_process');
const CronJob = require('cron').CronJob;
// scheduling the backup job
var job = new CronJob('59 23 * * *',
function () {
console.log('-------Running cron job-------');
backupDatabase();
},
null,
true
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment