From 0d23eaba09a4878520bf346af4cead90d76829fc Mon Sep 17 00:00:00 2001 From: Madeline <46743919+MaddyUnderStars@users.noreply.github.com> Date: Sun, 25 Sep 2022 18:24:21 +1000 Subject: Refactor to mono-repo + upgrade packages --- src/webrtc/start.ts | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 src/webrtc/start.ts (limited to 'src/webrtc/start.ts') diff --git a/src/webrtc/start.ts b/src/webrtc/start.ts new file mode 100644 index 00000000..9a5f38ee --- /dev/null +++ b/src/webrtc/start.ts @@ -0,0 +1,13 @@ +process.on("uncaughtException", console.error); +process.on("unhandledRejection", console.error); + +import { config } from "dotenv"; +import { Server } from "./Server"; +config(); + +const port = Number(process.env.PORT) || 3004; + +const server = new Server({ + port +}); +server.start(); \ No newline at end of file -- cgit 1.5.1