Skip to content

docs: fix default port (8080 → 3456) in EN start and status docs - #1357

Open
xiaolai wants to merge 1 commit into
musistudio:mainfrom
xiaolai:fix/nlpm-port-default-en-docs
Open

docs: fix default port (8080 → 3456) in EN start and status docs#1357
xiaolai wants to merge 1 commit into
musistudio:mainfrom
xiaolai:fix/nlpm-port-default-en-docs

Conversation

@xiaolai

@xiaolai xiaolai commented Apr 26, 2026

Copy link
Copy Markdown

Automated audit: This PR was generated by NLPM, a natural language programming linter, running via claude-code-action. Please evaluate the diff on its merits.

Bug

The English documentation for ccr start and ccr status documents the default server port as 8080, but the actual source code uses 3456 as the default:

  • packages/server/src/index.ts: const port = config.PORT || 3456;
  • packages/cli/src/cli.ts: PORT: 3456
  • packages/server/src/utils/index.ts: PORT: 3456

The zh-CN translation correctly documents port 3456, creating a confusing discrepancy for users reading the English docs. A user following the English documentation would expect the server on port 8080, connect to the wrong port, and get a connection-refused error.

Fix

Updated three locations in the EN docs:

  • docs/docs/cli/commands/start.md: options table default and output example (3 occurrences)
  • docs/docs/cli/commands/status.md: running-server output example (2 occurrences)

No logic or behavior is changed — this is a documentation-only fix aligning the EN docs with the implementation.

The server source code (packages/server/src/index.ts and
packages/cli/src/cli.ts) uses PORT 3456 as the default.
The EN documentation incorrectly stated 8080, contradicting
both the source code and the zh-CN translation.

Co-Authored-By: Claude Code <noreply@anthropic.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant