Skip to content

Instantly share code, notes, and snippets.

@michelepatrassi
Last active September 5, 2019 09:30
Show Gist options
  • Save michelepatrassi/278c1668edd979c8f15507339213f28b to your computer and use it in GitHub Desktop.
Save michelepatrassi/278c1668edd979c8f15507339213f28b to your computer and use it in GitHub Desktop.
Cloud Function cron
import * as functions from 'firebase-functions';
const CRON_SCHEDULE = '* * * * *';
export const cronMailchimp = functions.region('europe-west1').pubsub
.schedule(CRON_SCHEDULE).onRun(async context => {
console.log(`I will write this every minute`)
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment