what's the recommended way to have store locally, ...
# compose-desktop
g
what's the recommended way to have store locally, so something like localstorage for the purpose of keeping user config settings ect? thinking of pulling some data from a server but would like a way for the local user to store some config settings locally
j
I think that is not related to Compose itself
👆 1
You can use whatever you want, any database or settings (key-value) library which supports jvm
👆 1
g
thanks, but what can be packaged within the app?
a
You can use an embedded database such as SQLite. There's also Multiplatform settings which might be what you're looking for.
g
thanks @Ali Albaali
a
You're welcome!