Don't run interactive

master
Håvar Aambø Fosstveit 2020-03-18 01:00:32 +01:00
parent b9f666bc49
commit 023aac3c21
1 changed files with 0 additions and 5 deletions

View File

@ -33,7 +33,6 @@ const expressSession = require('express-session');
const RedisStore = require('connect-redis')(expressSession);
const sharedSession = require('express-socket.io-session');
const interactiveServer = require('./lib/interactiveServer');
const interactiveClient = require('./lib/interactiveClient');
/* eslint-disable no-console */
console.log('- process.env.DEBUG:', process.env.DEBUG);
@ -122,10 +121,6 @@ async function run()
// Open the interactive server.
await interactiveServer(rooms, peers);
// Open the interactive client.
if (process.env.INTERACTIVE === 'true' || process.env.INTERACTIVE === '1')
await interactiveClient();
if (typeof(config.auth) === 'undefined')
{
logger.warn('Auth is not configured properly!');