Created
April 14, 2022 00:19
-
-
Save demirtasdurmus/403c9683dcdc40c3452e46dfc541d7bd to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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