From beebb37ed60ffba75d776c275a01b6ff57f50223 Mon Sep 17 00:00:00 2001 From: Simon Date: Tue, 2 Jun 2026 20:13:00 -0700 Subject: [PATCH] README: use PORT=3002 in frontend quickstart to match the smoke test 'npm run dev' runs 'next dev', which ignores PORT from .env and defaults to 3000, so the documented 3002 was misleading. Align with scripts/smoke-test.sh. README-only. Co-Authored-By: Claude Opus 4.8 --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 36cfde0..2b02273 100644 --- a/README.md +++ b/README.md @@ -31,7 +31,7 @@ PYTHONPATH=. python3 api/main.py # 3. In a second terminal, start the frontend (Next.js) cd caedo-web npm install -npm run dev # serves on http://localhost:3002 by default +PORT=3002 npm run dev # http://localhost:3002 (the port the smoke test checks) ``` ## Usage