galaxy-opc 0.3.7 → 0.3.8
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/bin/cli.mjs +7 -4
- package/package.json +1 -1
package/bin/cli.mjs
CHANGED
|
@@ -437,14 +437,17 @@ async function cmdSetup() {
|
|
|
437
437
|
console.log(`
|
|
438
438
|
${bold(green("安装完成!"))}
|
|
439
439
|
|
|
440
|
-
启动命令:
|
|
440
|
+
${bold("启动命令:")}
|
|
441
441
|
${cyan("openclaw gateway")}
|
|
442
442
|
|
|
443
|
-
|
|
444
|
-
${cyan(
|
|
443
|
+
${bold("启动后访问:")}
|
|
444
|
+
对话界面: ${cyan("http://localhost:18789")}
|
|
445
|
+
管理后台: ${cyan(`http://localhost:18789/opc/admin?token=${gatewayToken}`)}
|
|
445
446
|
|
|
446
|
-
后台驻守(开机自启):
|
|
447
|
+
${bold("后台驻守(开机自启):")}
|
|
447
448
|
${cyan("openclaw onboard --install-daemon")}
|
|
449
|
+
|
|
450
|
+
${dim("提示:插件在 gateway 启动时自动加载,无需额外操作。")}
|
|
448
451
|
`);
|
|
449
452
|
if (defaultModel) console.log(` 当前模型: ${cyan(defaultModel)}\n`);
|
|
450
453
|
separator("═");
|