limbo-ai 1.20.0 → 1.20.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/cli.js +10 -13
- package/package.json +1 -1
package/cli.js
CHANGED
|
@@ -179,10 +179,13 @@ function composeContent() {
|
|
|
179
179
|
secrets:
|
|
180
180
|
llm_api_key:
|
|
181
181
|
file: ${SECRETS_DIR}/llm_api_key
|
|
182
|
+
mode: 0444
|
|
182
183
|
telegram_bot_token:
|
|
183
184
|
file: ${SECRETS_DIR}/telegram_bot_token
|
|
185
|
+
mode: 0444
|
|
184
186
|
gateway_token:
|
|
185
187
|
file: ${SECRETS_DIR}/gateway_token
|
|
188
|
+
mode: 0444
|
|
186
189
|
|
|
187
190
|
volumes:
|
|
188
191
|
limbo-data:
|
|
@@ -266,10 +269,13 @@ networks:
|
|
|
266
269
|
secrets:
|
|
267
270
|
llm_api_key:
|
|
268
271
|
file: ${SECRETS_DIR}/llm_api_key
|
|
272
|
+
mode: 0444
|
|
269
273
|
telegram_bot_token:
|
|
270
274
|
file: ${SECRETS_DIR}/telegram_bot_token
|
|
275
|
+
mode: 0444
|
|
271
276
|
gateway_token:
|
|
272
277
|
file: ${SECRETS_DIR}/gateway_token
|
|
278
|
+
mode: 0444
|
|
273
279
|
|
|
274
280
|
volumes:
|
|
275
281
|
limbo-data:
|
|
@@ -1599,19 +1605,10 @@ async function cmdStart() {
|
|
|
1599
1605
|
tunnel = await createSetupTunnel(PORT);
|
|
1600
1606
|
}
|
|
1601
1607
|
|
|
1602
|
-
if
|
|
1603
|
-
|
|
1604
|
-
|
|
1605
|
-
|
|
1606
|
-
console.log(`
|
|
1607
|
-
${c.green}${c.bold}Limbo is starting.${c.reset}
|
|
1608
|
-
|
|
1609
|
-
Open: ${c.cyan}${c.bold}${fallbackUrl}${c.reset}
|
|
1610
|
-
${c.dim}(may take a few seconds to be ready)${c.reset}
|
|
1611
|
-
|
|
1612
|
-
Logs: ${c.dim}limbo logs${c.reset}
|
|
1613
|
-
`);
|
|
1614
|
-
}
|
|
1608
|
+
// Always show the wizard URL with tunnel/SSH info, even if we couldn't
|
|
1609
|
+
// extract the token-authenticated URL from logs.
|
|
1610
|
+
const displayUrl = wizardUrl || `http://127.0.0.1:${PORT}`;
|
|
1611
|
+
printWizardUrl(displayUrl, tunnel);
|
|
1615
1612
|
}
|
|
1616
1613
|
|
|
1617
1614
|
// Shared path for headless, CLI-prompt, and existing-config routes
|