X-Git-Url: https://git.r.bdr.sh/rbdr/junction/blobdiff_plain/3d27ea914999f3c6067bd9a100bb0595b7bdd581..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 +});