Skip to content

Commit

Permalink
use defaultPort value from config
Browse files Browse the repository at this point in the history
  • Loading branch information
jwchang0206 committed Oct 16, 2012
1 parent 2462d42 commit 239d172
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app.js
Original file line number Diff line number Diff line change
Expand Up @@ -97,5 +97,5 @@ app.get('/tags/:tag', function(req, res) {
});


app.listen(8000);
console.log('Start at http://localhost:8000');
app.listen(config.defaultPort);
console.log('Start at http://localhost:' + config.defaultPort);

0 comments on commit 239d172

Please sign in to comment.