diff --git a/.github/workflows/integrate.yml b/.github/workflows/integrate.yml index 1b3b5fcf..42df2bc5 100644 --- a/.github/workflows/integrate.yml +++ b/.github/workflows/integrate.yml @@ -73,8 +73,8 @@ jobs: EOF cat <> ./client/.env NODE_ENV=development - MAILBOX_URL="wss://mailbox.stage.mw.leastauthority.com/v1" - RELAY_URL="wss://relay.stage.mw.leastauthority.com" + MAILBOX_URL="wss://client:8080/mailbox" + RELAY_URL="wss://client:8080/relay" EOF printf "Client .env:\n" cat ./client/.env diff --git a/client/scripts/devserver.ts b/client/scripts/devserver.ts index 779d1343..16a29673 100644 --- a/client/scripts/devserver.ts +++ b/client/scripts/devserver.ts @@ -31,7 +31,7 @@ app.use( app.use( createProxyMiddleware("/relay", { - target: "http://relay:4002", + target: "http://relay:4200", changeOrigin: true, ws: true, pathRewrite: { "^/relay": "" },