diff options
| author | MohamedBassem <me@mbassem.com> | 2025-04-12 19:37:18 +0100 |
|---|---|---|
| committer | MohamedBassem <me@mbassem.com> | 2025-04-12 19:37:40 +0100 |
| commit | 755fc36e912964863d4f46bb32adda6332b419fe (patch) | |
| tree | 3c54e9e6ed7686a119804716ccb6fdd6ad0da3c3 /apps/cli/src/index.ts | |
| parent | 7f569042f153a55189fb28e6ef6ab127b8190afd (diff) | |
| download | karakeep-755fc36e912964863d4f46bb32adda6332b419fe.tar.zst | |
chore: Rename hoarder packages to karakeep
Diffstat (limited to 'apps/cli/src/index.ts')
| -rw-r--r-- | apps/cli/src/index.ts | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/apps/cli/src/index.ts b/apps/cli/src/index.ts index a2a21a75..7d6c1472 100644 --- a/apps/cli/src/index.ts +++ b/apps/cli/src/index.ts @@ -7,12 +7,12 @@ import { setGlobalOptions } from "@/lib/globals"; import { Command, Option } from "@commander-js/extra-typings"; const program = new Command() - .name("hoarder") - .description("A CLI interface to interact with the hoarder api") + .name("karakeep") + .description("A CLI interface to interact with the karakeep api") .addOption( new Option("--api-key <key>", "the API key to interact with the API") .makeOptionMandatory(true) - .env("HOARDER_API_KEY"), + .env("KARAKEEP_API_KEY"), ) .addOption( new Option( @@ -20,7 +20,7 @@ const program = new Command() "the address of the server to connect to", ) .makeOptionMandatory(true) - .env("HOARDER_SERVER_ADDR"), + .env("KARAKEEP_SERVER_ADDR"), ) .addOption(new Option("--json", "to output the result as JSON")) .version( |
