Looking for information on steps to install the unofficial firestore-nlp-extension, link below.
https://github.com/FirebaseExtended/firestore-nlp-extension
I read the firestore docs but did not see instructions to install a "custom" extension.
Any help is appreciated!
CodePudding user response:
You need to install the extension from a local source but this was available during the alpha and the below link is no longer working
https://firebase.google.com/docs/extensions/alpha/install-extensions_community#install
The specific extension does not seem to be available on the Firebase system:
Error: The extension reference 'firebase/firestore-natural-language-processing@latest' doesn't exist. This could happen for two reasons: -The publisher ID 'firebase' doesn't exist or could be misspelled -The name of the extension version 'firestore-natural-language-processing@latest' doesn't exist or could be misspelled
For the current beta from the cli tool I found the following:
First, clone the git repo of the extension:
git clone [email protected]:FirebaseExtended/firestore-nlp-extension.git
and then to install this extension, run:
firebase ext:install ./firestore-nlp-extension --project=YOUR_PROJECT
