From 5e86d7ab9c5200d794c3adb2b422d20a2aefd2ce Mon Sep 17 00:00:00 2001 From: Flam3rboy <34555296+Flam3rboy@users.noreply.github.com> Date: Sat, 13 Aug 2022 02:00:50 +0200 Subject: restructure to single project --- gateway/src/start.ts | 14 -------------- 1 file changed, 14 deletions(-) delete mode 100644 gateway/src/start.ts (limited to 'gateway/src/start.ts') diff --git a/gateway/src/start.ts b/gateway/src/start.ts deleted file mode 100644 index 2000522a..00000000 --- a/gateway/src/start.ts +++ /dev/null @@ -1,14 +0,0 @@ -process.on("uncaughtException", console.error); -process.on("unhandledRejection", console.error); - -import { Server } from "./Server"; -import { config } from "dotenv"; -config(); - -let port = Number(process.env.PORT); -if (isNaN(port)) port = 3002; - -const server = new Server({ - port, -}); -server.start(); -- cgit 1.5.1