create-walle 0.2.0 → 0.2.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/bin/create-walle.js +9 -12
- package/package.json +1 -1
package/bin/create-walle.js
CHANGED
|
@@ -137,24 +137,21 @@ function install(targetDir) {
|
|
|
137
137
|
// Save install path for start/stop
|
|
138
138
|
saveWalleDir(path.resolve(targetDir));
|
|
139
139
|
|
|
140
|
-
// Install and start the service
|
|
141
|
-
console.log(`\n Starting Wall-E service...`);
|
|
142
|
-
installService(path.resolve(targetDir), port);
|
|
143
|
-
|
|
144
140
|
console.log(`
|
|
145
|
-
${GREEN}${BOLD}
|
|
141
|
+
${GREEN}${BOLD}Done!${RESET}
|
|
142
|
+
|
|
143
|
+
${BOLD}Start Wall-E:${RESET}
|
|
144
|
+
cd ${targetDir} && node claude-task-manager/server.js
|
|
145
|
+
|
|
146
|
+
${BOLD}Then open:${RESET} http://localhost:${port}
|
|
146
147
|
|
|
147
|
-
${BOLD}
|
|
148
|
+
${BOLD}Auto-start on login (optional):${RESET}
|
|
149
|
+
npx create-walle start
|
|
148
150
|
|
|
149
|
-
${BOLD}
|
|
151
|
+
${BOLD}Other commands:${RESET}
|
|
150
152
|
npx create-walle stop ${DIM}Stop the service${RESET}
|
|
151
|
-
npx create-walle start ${DIM}Start / restart${RESET}
|
|
152
153
|
npx create-walle status ${DIM}Check status${RESET}
|
|
153
154
|
npx create-walle logs ${DIM}View logs${RESET}
|
|
154
|
-
|
|
155
|
-
${BOLD}Change port:${RESET}
|
|
156
|
-
Edit ${targetDir}/.env → CTM_PORT=8080
|
|
157
|
-
npx create-walle start
|
|
158
155
|
`);
|
|
159
156
|
}
|
|
160
157
|
|