Skip to content

Commit ba141e3

Browse files
author
Prosper Otemuyiwa
authored
Merge pull request auth0-blog#29 from auth0-blog/fix-port
Change port to 3001
2 parents 1e294b4 + cecba1b commit ba141e3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

server.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ app.use(require('./anonymous-routes'));
3535
app.use(require('./protected-routes'));
3636
app.use(require('./user-routes'));
3737

38-
var port = process.env.PORT || 3002;
38+
var port = process.env.PORT || 3001;
3939

4040
http.createServer(app).listen(port, function (err) {
4141
console.log('listening in http://localhost:' + port);

0 commit comments

Comments
 (0)