Merge branch 'dev' into feat-decouple-l-s-entrypoint
This commit is contained in:
commit
9f13873e36
18 changed files with 569 additions and 136 deletions
|
|
@ -82,8 +82,6 @@ function startServer (settings) {
|
|||
: https.createServer(httpsServerOptions, routes.app)
|
||||
|
||||
const port = argv.port || 3000
|
||||
const localPort = 3030
|
||||
const localServer = http.createServer(routes.localApp)
|
||||
|
||||
if (devMode) logger.info('In dev mode')
|
||||
|
||||
|
|
@ -91,10 +89,6 @@ function startServer (settings) {
|
|||
logger.info('lamassu-server listening on port ' +
|
||||
port + ' ' + (devMode ? '(http)' : '(https)'))
|
||||
})
|
||||
|
||||
localServer.listen(localPort, 'localhost', () => {
|
||||
logger.info('lamassu-server listening on local port ' + localPort)
|
||||
})
|
||||
})
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue