From: Ruben Beltran del Rio Date: Wed, 7 Oct 2020 20:57:25 +0000 (+0200) Subject: Allow to override the port X-Git-Url: https://git.r.bdr.sh/rbdr/junction/commitdiff_plain/c134086d29a5adaa45234de2f05512588dee26d9?ds=inline Allow to override the port --- diff --git a/server/index.js b/server/index.js index de05616..b01a337 100644 --- a/server/index.js +++ b/server/index.js @@ -1,4 +1,4 @@ -const PORT = 8000; +const PORT = process.env.JUNCTION_PORT || 8000; const express = require('express'); const http = require('http'); @@ -51,4 +51,4 @@ io.sockets.on('connection', (socket) => { console.log(`[RELAY_SESSION_DESCRIPTION] Session description for client ${me} has been relayed to all peers`); }); -}); \ No newline at end of file +});