-
|
I am looking into solutions for a two-mode OSS app, a SvelteKit website that can be hosted with (Node.js) and without (Static files) a server. Triplit looks perfect for this, but its documentation does not mention how one could use |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
|
You would like to seed a client side/on device database, correct? In this case, you can run a transaction on startup and probably save an indicator that the data has been seeded. If the data will never sync, you might be able to use If that's not what you're looking to do can you please expand upon your use case? |
Beta Was this translation helpful? Give feedback.
You would like to seed a client side/on device database, correct? In this case, you can run a transaction on startup and probably save an indicator that the data has been seeded. If the data will never sync, you might be able to use
@triplit/dbinstead of@triplit/client.If that's not what you're looking to do can you please expand upon your use case?