Merge branch 'dev' into feat-decouple-l-s-entrypoint

This commit is contained in:
Rafael Taranto 2022-04-27 15:59:33 +01:00 committed by GitHub
commit 9f13873e36
18 changed files with 569 additions and 136 deletions

View file

@ -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)
})
})
}