mirror of
https://github.com/Foundry376/Mailspring.git
synced 2025-01-01 13:14:16 +08:00
Default to port 5100
This commit is contained in:
parent
e75d0ea16b
commit
647dc1f78c
1 changed files with 2 additions and 1 deletions
|
@ -9,7 +9,8 @@ const path = require('path');
|
|||
global.__base = path.join(__dirname, '..')
|
||||
|
||||
const server = new Hapi.Server();
|
||||
server.connection({ port: process.env.PORT || 3000 });
|
||||
console.log(process.env.PORT)
|
||||
server.connection({ port: process.env.PORT || 5100 });
|
||||
|
||||
const plugins = [Inert, Vision, HapiBasicAuth, {
|
||||
register: HapiSwagger,
|
||||
|
|
Loading…
Reference in a new issue