Created
July 29, 2021 10:08
-
-
Save bibhuticoder/dca1610eded55b3b2bf6a9592e769c58 to your computer and use it in GitHub Desktop.
This file contains 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
import cron from 'node-cron'; | |
import instaCacheCron from "./crons/instaCache.cron"; | |
// run immediately after server starts | |
instaCacheCron(); | |
// update instaPhotos Cache every 3 hours | |
cron.schedule('0 0 */3 * * *', async () => { | |
// this method fetches updated Insta images and saves to DB. | |
await instaCacheCron(); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment