From 4c8379c874da824e0a58c0400b53e5643671cfe5 Mon Sep 17 00:00:00 2001 From: Flam3rboy <34555296+Flam3rboy@users.noreply.github.com> Date: Sun, 2 May 2021 17:11:18 +0200 Subject: Change default port: Client = 3000 API = 3001 Gateway = 3002 --- src/routes/gateway.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/routes/gateway.ts') diff --git a/src/routes/gateway.ts b/src/routes/gateway.ts index edbb8890..cab685e2 100644 --- a/src/routes/gateway.ts +++ b/src/routes/gateway.ts @@ -3,7 +3,7 @@ import { Router } from "express"; const router = Router(); router.get("/", (req, res) => { - res.send({ url: "ws://localhost:2000" }); + res.send({ url: "ws://localhost:3002" }); }); export default router; -- cgit 1.5.1