summary refs log tree commit diff
path: root/webrtc/src/start.ts
blob: 98f06ad52042222a1246685e6fb55bea4659e598 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
//testing
process.env.DATABASE = "../bundle/database.db";

import { config } from "dotenv";
config();

import { Server } from "./Server";

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