fix: change default internal port to 5055 (#389)

This commit is contained in:
sct
2020-12-19 00:12:41 +09:00
committed by GitHub
parent 36b2b4fba4
commit 5e5ba40505
7 changed files with 10 additions and 9 deletions

View File

@@ -100,7 +100,7 @@ app
}
);
const port = Number(process.env.PORT) || 3000;
const port = Number(process.env.PORT) || 5055;
const host = process.env.HOST;
if (host) {
server.listen(port, host, () => {