set default port to 5000

testing stuff with dokku
This commit is contained in:
jomo 2015-01-10 02:26:06 +01:00
parent 5bf3d7b5dc
commit 7021bdb606

View File

@ -81,7 +81,7 @@ function requestHandler(req, res) {
}
var boot = module.exports = function () {
http.createServer(requestHandler).listen(process.env.PORT || 3000);
http.createServer(requestHandler).listen(process.env.PORT || 5000);
};
if (require.main === module) {