-
I would like to support a “freemium” model in my app, in which users can play around with app features locally without the need for authenticating, but can then choose to "upgrade" which will require authentication, at which point their local data is synced to the cloud. From what I can tell, the only way this might work is to have Any tips or insights would be appreciated! |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
Btw, I took a look at the source code to see if I could better understand what happens if |
Beta Was this translation helpful? Give feedback.
-
I found the following in another discussion, which is an explanation of what actually happens when setting
So I think this means I should be able to use dexie cloud for my above use case. |
Beta Was this translation helpful? Give feedback.
I found the following in another discussion, which is an explanation of what actually happens when setting
reqiureAuth
to false and I think is the answer I am looking for.