Use port 41201 instead of 3000 by default

This commit is contained in:
rijkvanzanten
2020-08-03 17:44:09 -04:00
parent d13fb94515
commit a99a7f47f4
3 changed files with 6 additions and 8 deletions

View File

@@ -3,7 +3,7 @@ import logger from './logger';
import getPort from 'get-port';
(async () => {
const port = process.env.PORT || (await getPort({ port: 3000 }));
const port = process.env.PORT || (await getPort({ port: 41201 }));
app.listen(port, () => {
logger.info(`Server started at port ${port}`);