Skip to content

Commit f985a3c

Browse files
committed
fix: change Server Listen Port to 3888
1 parent 3ad46b3 commit f985a3c

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

CLAUDE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ npm run build:server
5555

5656
| 变量 | 默认值 | 说明 |
5757
|------|--------|------|
58-
| `WS_PORT` | 3000 | WebSocket 服务器端口 |
58+
| `WS_PORT` | 3888 | WebSocket 服务器端口 |
5959
| `LOG_LEVEL` | info | 日志级别 (debug/info/warn/error) |
6060

6161
## MCP 工具

server/src/ws/server.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { ClientMessage } from "@wire-agent/protocol";
33
import { executorManager } from "../executor/manager";
44
import { wsLogger as log } from "../utils/logger";
55

6-
const WS_PORT = parseInt(process.env.WS_PORT || "3000", 10);
6+
const WS_PORT = parseInt(process.env.WS_PORT || "3888", 10);
77

88
let wss: WebSocketServer | null = null;
99

0 commit comments

Comments
 (0)