Created
July 31, 2020 17:13
-
-
Save shangyilim/cfbe5e8a716c5e3120447736ee4e778e 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
exports.scheduledFunctionCrontab = functions.pubsub.schedule('5 11 * * *') | |
.timeZone('America/New_York') // Users can choose timezone - default is America/Los_Angeles | |
.onRun((context) => { | |
console.log('Convert your Firestore collection to CSVs every day at 11:05 AM Eastern!'); | |
return null; | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment