firemore
firemore copied to clipboard
Support Cloud Functions
Firebase supports cloud functions that can be called on CREATE/UPDATE/DELETE of Firestore entities. These are normal JS functions that are invoked on the server that takes the context as an argument. Rather than write js functions, can I write cljs functions that I can pass to the server?
https://firebase.google.com/docs/functions
What is developing these things like? What is the flow
- Deploy your cloud functions manually as needed.
- Git commit hooks that notice new cloud functions and upload them every time they are changed.
- Part of your CI just uploads new cloud functions (may already do this?).