|
|
|
|
|
by samjmck
991 days ago
|
|
The first page of their documentation [0] mentions this: > Opening a database
> In your Deno program, you can get a reference to a KV database using Deno.openKv(). You may pass in an optional file system path to where you'd like to store your database, otherwise one will be created for you based on the current working directory of your script. In fact, only the last page in the documentation speaks about KV on Deno Deploy. [1] https://docs.deno.com/kv/manual#opening-a-database |
|
But, I think this section hints at how it could be done [1]. Its phrased in the context of connecting to the DenoKV-hosted database from outside Deno Deploy, but it seems like the reverse could also be accomplished with the same API.
[1] https://docs.deno.com/kv/manual/on_deploy#connect-to-managed...