diff options
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( |
