mirror of
https://github.com/claude-code-best/claude-code.git
synced 2026-06-17 22:05:50 +00:00
24 lines
1.2 KiB
TypeScript
24 lines
1.2 KiB
TypeScript
export const config = {
|
|
version: process.env.RCS_VERSION || "0.1.0",
|
|
port: parseInt(process.env.RCS_PORT || "3000"),
|
|
host: process.env.RCS_HOST || "0.0.0.0",
|
|
apiKeys: (process.env.RCS_API_KEYS || "").split(",").filter(Boolean),
|
|
baseUrl: process.env.RCS_BASE_URL || "",
|
|
pollTimeout: parseInt(process.env.RCS_POLL_TIMEOUT || "8"),
|
|
heartbeatInterval: parseInt(process.env.RCS_HEARTBEAT_INTERVAL || "20"),
|
|
jwtExpiresIn: parseInt(process.env.RCS_JWT_EXPIRES_IN || "3600"),
|
|
disconnectTimeout: parseInt(process.env.RCS_DISCONNECT_TIMEOUT || "300"),
|
|
/** Bun WebSocket idle timeout (seconds). Bun sends protocol-level pings after
|
|
* this many seconds of no received data. Must be shorter than any reverse
|
|
* proxy's idle timeout (nginx default 60s, Cloudflare 100s). Default 30s. */
|
|
wsIdleTimeout: parseInt(process.env.RCS_WS_IDLE_TIMEOUT || "30"),
|
|
/** Server→client keep_alive data-frame interval (seconds). Keeps reverse
|
|
* proxies from closing idle connections. Default 20s. */
|
|
wsKeepaliveInterval: parseInt(process.env.RCS_WS_KEEPALIVE_INTERVAL || "20"),
|
|
} as const;
|
|
|
|
export function getBaseUrl(): string {
|
|
const url = config.baseUrl || `http://localhost:${config.port}`;
|
|
return url.replace(/\/+$/, "");
|
|
}
|