Has anyone ever used both supabase and firebase on...
# ideas-and-suggestions
m
Has anyone ever used both supabase and firebase on a project? I have one where I think it could benefit but wanted to make sure I wasn't insane
j
i'm interested to hear more about the use case on this 🙂
m
We had an MVP built with firebase that’s scaling up. Don’t necessarily want to migrate the whole backend, but they have reports and read heavy stuff that would greatly benefit from being able to do join queries. So I was going to potentially mirror the db in a way and use it for certain things. Then down the line We could potentially migrate and use supabase as the primary db
It’s kind of a mess but not being able to do joins is killing us as reporting has become a huge piece of the app
j
understood. this sounds familiar 😅
probably need to keep using firebase auth (assuming your using it) for now as well, and have supabase queries done on a backend for now. not sure about mirroring the data to supabase though, maybe @User has some ideas - he's been diving into a lot of firebase > supabase migration stuff
b
I have a repo for migrating data from Firebase to Supabase, and would be happy to help if you need it.
m
Interesting I'll take a look at this. As for mirroring I figured I could just use firestore triggers every time a record is written. We're currently doing that to index stuff to algolia and works pretty well