In https://firebase.google.com/docs/hosting/functions there’s an example of creating a project with a single Cloud Function that serves web requests.
For my project, I’d like to have a function that serves web requests, but also add another function that’s triggered by Cloud Scheduler that changes some entries in a database table. How can I add a second cloud function to the project and deploy both of them and link the second one to Cloud Scheduler?
Thanks in advance.