docs: fix default port (8080 → 3456) in EN start and status docs - #1357
Open
xiaolai wants to merge 1 commit into
Open
docs: fix default port (8080 → 3456) in EN start and status docs#1357xiaolai wants to merge 1 commit into
xiaolai wants to merge 1 commit into
Conversation
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>
This was referenced Apr 26, 2026
Open
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Bug
The English documentation for
ccr startandccr statusdocuments 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: 3456packages/server/src/utils/index.ts:PORT: 3456The 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.