1. Implement Firebase CloudFunction, which: - [ ] Triggers, when new image is uploaded to Firebase Storage - [ ] Use Google Vision Client to run OCR on image - [ ] Extract license plate number - [ ] Store result in Firestore 2. Listen in `/annotate` view for result - [ ] Listen to updated Firestore entry [annotate view](https://github.com/DigitalProductschool/workshops--gcloud/blob/master/src/components/annotate/index.js#L24) - [ ] Update state of view to display result Recommended reading: - [Cloud Storage Triggers](https://firebase.google.com/docs/functions/gcp-storage-events) - [Vision Client documentation](https://cloud.google.com/vision/docs/libraries#client-libraries-install-nodejs) - [Write data in Firestore](https://firebase.google.com/docs/firestore/manage-data/add-data) - [Realtime updates from Firestore](https://firebase.google.com/docs/firestore/query-data/listen)