Skip to content

Commit

Permalink
Update message about setting default port
Browse files Browse the repository at this point in the history
Default port can no longer be set by changing server.js, point users
towards config file instead.
  • Loading branch information
lfdebrux committed Nov 11, 2022
1 parent ccfbc06 commit 7266cd7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ exports.findAvailablePort = function (app, callback) {
callback(port)
} else {
// User answers no - exit
console.log('\nYou can set a new default port in server.js, or by running the server with PORT=XXXX')
console.log('\nYou can set a new default port in app/config.json, or by running the server with PORT=XXXX')
console.log('\nExit by pressing \'ctrl + c\'')
process.exit(0)
}
Expand Down

0 comments on commit 7266cd7

Please sign in to comment.