Skip to content

Commit 3e9c739

Browse files
committed
chore: server fix default port Refs: PL-240
1 parent 8cce0ba commit 3e9c739

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

server.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -281,7 +281,7 @@ const createServer = async () => {
281281
Sentry.setupExpressErrorHandler(app);
282282
}
283283

284-
const port = process.env.PORT || 8080;
284+
const port = process.env.PORT || 3000;
285285
app.listen(port, () => {
286286
console.log('Application version tag:', GIT_TAG, 'commit:', GIT_COMMIT);
287287
console.log(`Server listening on port ${port}`);

0 commit comments

Comments
 (0)