server/index.js
2025-03-31 14:17:29 +02:00

8 lines
206 B
JavaScript

import * as ws from './lib/ws.js';
import * as db from './lib/db.js';
let myDb = db.init(process.env.MONGO_CONN_STR)
.then(dbFuncs => {
ws.init({ port: process.env.WEB_SOCKET_PORT }, dbFuncs);
});