You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Sep 22, 2024. It is now read-only.
The CLI is missing certain utilities to make it easier to manage the KV database across environments (development and production). Some useful utilities include: dump, migrate, mock, reset, restore, seed, upload (from e.g. JSON files), etc.
This issue should replace the db: tasks under e.g. templates/crm/tasks/. The subcommands should ask to specify filepaths to JSON files of KVMutations. As a convention, we use *.entries.json filenames. These files should have be in the form of [Deno.KvMutation](https://deno.land/api?s=Deno.KvMutation&unstable=)[] or { type: "set"; value: unknown; expireIn?: number; }[] for now. Other formats e.g. CSV can be added laterr.
The text was updated successfully, but these errors were encountered:
The CLI is missing certain utilities to make it easier to manage the KV database across environments (development and production). Some useful utilities include:
dump
,migrate
,mock
,reset
,restore
,seed
,upload
(from e.g. JSON files), etc.This issue should replace the
db:
tasks under e.g.templates/crm/tasks/
. The subcommands should ask to specify filepaths to JSON files of KVMutations. As a convention, we use*.entries.json
filenames. These files should have be in the form of[Deno.KvMutation](https://deno.land/api?s=Deno.KvMutation&unstable=)[]
or{ type: "set"; value: unknown; expireIn?: number; }[]
for now. Other formats e.g. CSV can be added laterr.The text was updated successfully, but these errors were encountered: