cognary-cli 1.0.0 → 1.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/index.js +1 -1
package/package.json
CHANGED
package/src/index.js
CHANGED
|
@@ -12,7 +12,7 @@ program
|
|
|
12
12
|
.description('CLI for Cognary Tasks')
|
|
13
13
|
.version('1.0.0')
|
|
14
14
|
.option('-k, --api-key <key>', 'API key for authentication (or set COGNARY_API_KEY env var)')
|
|
15
|
-
.option('-u, --api-url <url>', 'API base URL (or set COGNARY_API_URL env var)');
|
|
15
|
+
.option('-u, --api-url <url>', 'API base URL (or set COGNARY_API_URL env var)', 'https://tasks.cognary.ai');
|
|
16
16
|
|
|
17
17
|
// Add commands
|
|
18
18
|
program.addCommand(tasksCommand);
|