fix: listen to all ports on host
in future, we need to discriminate with a RUN_IN_DOCKER env var
serenity 1 month ago 1035af06 2f52b5e0
··· 55 55 } 56 56 } 57 57 58 58 - server.listen({ port: SERVER_PORT }).catch((err: unknown) => { 58 58 + server.listen({ port: SERVER_PORT, host: "::" }).catch((err: unknown) => { 59 59 server.log.error(err); 60 60 process.exit(1); 61 61 });