netzo / fresh-netzo

Full-stack Deno Fresh meta-framework for building business web apps like internal tools, dashboards, admin panels and automated workflows.
https://netzo.io
MIT License
51 stars 3 forks source link

[databases] personal database empty #80

Closed gabrielromk closed 10 months ago

gabrielromk commented 10 months ago

I forked the template and seeded the database, however, I can't see any entries in the platform even though it is working properly.

miguelrk commented 10 months ago

@gabrielromk it's important to note the different connections Deno.openKv can establish (local and remote). See the API reference for more details:

image

That being said, its different if you open

  1. the default local database via await Deno.openKv()
  2. a remote database in netzo via await Deno.openKv("https://api.deno.com/databases/<database-id>/connect")

Closing this for now.