Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion packages/jay-stack/stack-cli/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,8 @@ When test mode is enabled, the startup output includes the test endpoints:
```
πŸš€ Jay Stack dev server started successfully!
πŸ“± Dev Server: http://localhost:3300
🎨 Editor Server: http://localhost:3301 (ID: init)
🎨 Editor (AIditor): http://localhost:3300/aiditor
(editor socket server on http://localhost:3301, ID: init)
πŸ“ Pages directory: ./src/pages
πŸ§ͺ Test Mode: enabled
Health: http://localhost:3300/_jay/health
Expand Down
3 changes: 2 additions & 1 deletion packages/jay-stack/stack-cli/lib/server.ts
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,8 @@ export async function startDevServer(options: StartDevServerOptions = {}) {
httpServer.listen(devServerPort, () => {
log.important(`πŸš€ Jay Stack dev server started successfully!`);
log.important(`πŸ“± Dev Server: http://localhost:${devServerPort}`);
log.important(`🎨 Editor Server: http://localhost:${editorPort} (ID: ${editorId})`);
log.important(`🎨 Editor (AIditor): http://localhost:${devServerPort}/aiditor`);
log.important(` (editor socket server on http://localhost:${editorPort}, ID: ${editorId})`);
log.important(`πŸ“ Pages directory: ${resolvedConfig.devServer.pagesBase}`);
if (fs.existsSync(publicPath)) {
log.important(`πŸ“ Public folder: ${resolvedConfig.devServer.publicFolder}`);
Expand Down