I am create API with firebase via this tutorial here.
On I run:
firebase deploy
I get this error on the command line:
This is a example of scheduler , but this will not work in free account . Billing must be enabled for activation of service(s) 'cloudscheduler.googleapis.com' to proceed.
import * as functions from 'firebase-functions';
import {db, notificationSentEvent, deviceData} from './init';
export const dailyDelete = functions.pubsub.schedule( '10 1 * * *' ).onRun(context => {
console.log('At 01:10');
})