summary refs log tree commit diff
diff options
context:
space:
mode:
authorFlam3rboy <34555296+Flam3rboy@users.noreply.github.com>2021-05-02 17:11:21 +0200
committerFlam3rboy <34555296+Flam3rboy@users.noreply.github.com>2021-05-02 17:11:21 +0200
commit13cbf7bd88d4a9138646743e855bb99fa17d4cae (patch)
treeda2f0d05ebe2b0f373196e972272dd5a13828fb8
parentUpdate README.md (diff)
downloadserver-13cbf7bd88d4a9138646743e855bb99fa17d4cae.tar.xz
Change default port:
Client = 3000
API = 3001
Gateway = 3002
-rw-r--r--src/Server.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Server.ts b/src/Server.ts

index 38c31671..149883c2 100644 --- a/src/Server.ts +++ b/src/Server.ts
@@ -7,7 +7,7 @@ import { Connection } from "./events/Connection"; import Config from "./util/Config"; var port = Number(process.env.PORT); -if (isNaN(port)) port = 2000; +if (isNaN(port)) port = 3002; export class Server { public ws: WebSocketServer;