session-intelligence-cli 0.1.0 → 0.1.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/dist/setup.js +1 -1
- package/package.json +1 -1
package/dist/setup.js
CHANGED
|
@@ -21,7 +21,7 @@ const HOOKS_CONFIG = {
|
|
|
21
21
|
};
|
|
22
22
|
export async function setup() {
|
|
23
23
|
console.log("\n Session Intelligence — Setup\n");
|
|
24
|
-
const serverUrl = await prompt(" Server URL (
|
|
24
|
+
const serverUrl = await prompt(" Server URL (default: https://www.session-intelligence.com): ") || "https://www.session-intelligence.com";
|
|
25
25
|
const apiKey = await prompt(" API Key: ");
|
|
26
26
|
writeConfig({ apiKey, serverUrl });
|
|
27
27
|
console.log("\n Config saved to ~/.session-intelligence/config.json");
|