summary refs log tree commit diff
path: root/webrtc/src/start.ts
blob: f902ec1bf6d8c8f0c7fbe591f3bbb3e5b8998d36 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
import { config } from "dotenv";
config();

//testing
process.env.DATABASE = "../bundle/database.db";
process.env.DEBUG = "mediasoup*"

import { Server } from "./Server";

const server = new Server();
server.listen();