aboutsummaryrefslogtreecommitdiffstats
path: root/apps/cli/src/index.ts
diff options
context:
space:
mode:
authorMohamed Bassem <me@mbassem.com>2025-09-14 12:47:21 +0000
committerMohamed Bassem <me@mbassem.com>2025-09-14 12:47:21 +0000
commit783f72cb91b436e8ee6d7349da4cf72dc3219aa1 (patch)
tree562a6cd35ed0b7474e25b7ac10f0bd1fef28c8dd /apps/cli/src/index.ts
parent92e357f141ff2aa4730e4a6ec316b7524fec863a (diff)
downloadkarakeep-783f72cb91b436e8ee6d7349da4cf72dc3219aa1.tar.zst
feat: Add scripts to migrate all content from one server to the other
Diffstat (limited to 'apps/cli/src/index.ts')
-rw-r--r--apps/cli/src/index.ts2
1 files changed, 2 insertions, 0 deletions
diff --git a/apps/cli/src/index.ts b/apps/cli/src/index.ts
index cfb1d520..7c948c47 100644
--- a/apps/cli/src/index.ts
+++ b/apps/cli/src/index.ts
@@ -1,5 +1,6 @@
import { bookmarkCmd } from "@/commands/bookmarks";
import { listsCmd } from "@/commands/lists";
+import { migrateCmd } from "@/commands/migrate";
import { tagsCmd } from "@/commands/tags";
import { whoamiCmd } from "@/commands/whoami";
import { setGlobalOptions } from "@/lib/globals";
@@ -32,6 +33,7 @@ program.addCommand(bookmarkCmd);
program.addCommand(listsCmd);
program.addCommand(tagsCmd);
program.addCommand(whoamiCmd);
+program.addCommand(migrateCmd);
setGlobalOptions(program.opts());