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

import { Server } from "./Server";

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

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