aboutsummaryrefslogtreecommitdiff
path: root/server
diff options
context:
space:
mode:
Diffstat (limited to 'server')
-rw-r--r--server/index.js4
1 files changed, 2 insertions, 2 deletions
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
+});