Hello everyone, sorry about my english. I'm trying...
# community-help
m
Hello everyone, sorry about my english. I'm trying integrate firestore real time database with typesense self-host(on Ec2), I'm using this extension https://github.com/typesense/firestore-typesense-search but this data don't go to typesense. No error is displayed, but this data not showing on typesense. Anyone can help ?
j
@Matheus Fonseca That extension only works with Firestore, not with Realtime database (which is a separate product)
m
Can you suggest a way to integrate with typesense? Or another strategy to indexing data ?
j
@Matheus Fonseca You want to setup database triggers on your Firestore DB: https://firebase.google.com/docs/functions/database-events And then in the event handlers, write into Typesense, very similar to what the Firestore extension does here: https://github.com/typesense/firestore-typesense-search/blob/master/functions/src/indexToTypesenseOnFirestoreWrite.js
m
ok thank you for help
👍 1