Skip to content

Commit 833286c

Browse files
committed
Update health check URLs and MCP port configuration
- Changed health check URLs in GitHub workflows from `http://localhost:8142/health` to `http://localhost:8144/health` for consistency across multiple workflow files. - Updated the MCP base URL in the development environment configuration from port `8142` to `8144` to reflect the new service port. - Adjusted the `package.json` scripts for the MCP application to use the updated port `8144` for both development and start commands.
1 parent 097ee75 commit 833286c

5 files changed

Lines changed: 7 additions & 7 deletions

File tree

.github/workflows/db-migration-backwards-compatibility.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@ jobs:
174174
with:
175175
run: pnpm run start:mcp --log-order=stream &
176176
wait-on: |
177-
http://localhost:8142/health
177+
http://localhost:8144/health
178178
tail: true
179179
wait-for: 30s
180180
log-output-if: true
@@ -381,7 +381,7 @@ jobs:
381381
with:
382382
run: pnpm run start:mcp --log-order=stream &
383383
wait-on: |
384-
http://localhost:8142/health
384+
http://localhost:8144/health
385385
tail: true
386386
wait-for: 30s
387387
log-output-if: true

.github/workflows/e2e-api-tests-local-emulator.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ jobs:
124124
with:
125125
run: pnpm run start:mcp --log-order=stream &
126126
wait-on: |
127-
http://localhost:8142/health
127+
http://localhost:8144/health
128128
tail: true
129129
wait-for: 30s
130130
log-output-if: true

.github/workflows/e2e-api-tests.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ jobs:
130130
with:
131131
run: pnpm run start:mcp --log-order=stream &
132132
wait-on: |
133-
http://localhost:8142/health
133+
http://localhost:8144/health
134134
tail: true
135135
wait-for: 30s
136136
log-output-if: true

apps/e2e/.env.development

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
STACK_DASHBOARD_BASE_URL=http://localhost:${NEXT_PUBLIC_STACK_PORT_PREFIX:-81}01
22
STACK_BACKEND_BASE_URL=http://localhost:${NEXT_PUBLIC_STACK_PORT_PREFIX:-81}02
3-
STACK_MCP_BASE_URL=http://localhost:${NEXT_PUBLIC_STACK_PORT_PREFIX:-81}42
3+
STACK_MCP_BASE_URL=http://localhost:${NEXT_PUBLIC_STACK_PORT_PREFIX:-81}44
44
STACK_INTERNAL_PROJECT_ID=internal
55
STACK_INTERNAL_PROJECT_CLIENT_KEY=this-publishable-client-key-is-for-local-development-only
66
STACK_INTERNAL_PROJECT_SERVER_KEY=this-secret-server-key-is-for-local-development-only

apps/mcp/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@
77
"scripts": {
88
"clean": "rimraf .next && rimraf node_modules",
99
"typecheck": "tsc --noEmit",
10-
"dev": "next dev --turbopack --port ${NEXT_PUBLIC_STACK_PORT_PREFIX:-81}42",
10+
"dev": "next dev --turbopack --port ${NEXT_PUBLIC_STACK_PORT_PREFIX:-81}44",
1111
"build": "next build",
12-
"start": "next start --port ${NEXT_PUBLIC_STACK_PORT_PREFIX:-81}42",
12+
"start": "next start --port ${NEXT_PUBLIC_STACK_PORT_PREFIX:-81}44",
1313
"lint": "eslint ."
1414
},
1515
"dependencies": {

0 commit comments

Comments
 (0)