mirror of
https://github.com/spacebarchat/server.git
synced 2026-05-10 10:45:21 +00:00
11 lines
217 B
TypeScript
11 lines
217 B
TypeScript
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(); |