|
|
|
|
|
by stopachka
659 days ago
|
|
For what it's worth, we designed Instant with this in mind. Schema is optional, and you can save JSON data into a column if you like. If you wanted to store documents, you could write: ``` useQuery({docs: {}}) // get documents transact(tx.docs[docId].update({someKey: someValue}); // update keys in a doc transact(tx.docs[docId].delete()) // delete the doc ``` |
|
2 questions.
How hard is it to swap our firebase for instant? I've had an amazing time with firebase, but I sorta want to switch to using a completely local solution.
I have a small lyric video generator, and while I don't care about my own songs potentially leaking, I would never want to take responsibility for something else's data. I basically use firebase for the lyrics afterwards I transcribe them .
Second, do you offer your own auth or just integrate with other solutions.