diff options
| author | Ruben Beltran del Rio <ruben@unlimited.pizza> | 2020-10-07 22:57:25 +0200 |
|---|---|---|
| committer | Ruben Beltran del Rio <ruben@unlimited.pizza> | 2020-10-07 22:57:25 +0200 |
| commit | c134086d29a5adaa45234de2f05512588dee26d9 (patch) | |
| tree | 2c51b481cc7ce6c93e4805925c2ebfa69c246f97 | |
| parent | 3d27ea914999f3c6067bd9a100bb0595b7bdd581 (diff) | |
Allow to override the port
| -rw-r--r-- | server/index.js | 4 |
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 +}); |