fix(broker): default port 7899 → 7900 to avoid collision with claude-intercom dev
Port 7899 is used by claude-intercom's broker on dev machines (it's the convention for that tool). claudemesh is a distinct product and should have its own default port. 7900 is unreserved and unconflicted. Prod deploys override via BROKER_PORT env var, so this only affects local dev ergonomics. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
@@ -9,7 +9,7 @@ import { z } from "zod";
|
||||
* without a .env file.
|
||||
*/
|
||||
const envSchema = z.object({
|
||||
BROKER_PORT: z.coerce.number().int().positive().default(7899),
|
||||
BROKER_PORT: z.coerce.number().int().positive().default(7900),
|
||||
DATABASE_URL: z.string().min(1, "DATABASE_URL is required"),
|
||||
STATUS_TTL_SECONDS: z.coerce.number().int().positive().default(60),
|
||||
HOOK_FRESH_WINDOW_SECONDS: z.coerce.number().int().positive().default(30),
|
||||
|
||||
Reference in New Issue
Block a user