X-Git-Url: https://git.r.bdr.sh/rbdr/junction/blobdiff_plain/c3fafc92b16013c658c6efd2240f27252a00f860..c134086d29a5adaa45234de2f05512588dee26d9:/server/index.js 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 +});