diff options
| -rw-r--r-- | bucky/app/index.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bucky/app/index.js b/bucky/app/index.js index 85c1d82..704802c 100644 --- a/bucky/app/index.js +++ b/bucky/app/index.js @@ -21,7 +21,7 @@ var app, server var site = module.exports = {} site.init = function(){ app = express() - app.set('port', 5000) + app.set('port', process.env.PORT || 5000) app.use(favicon(__dirname + '../../../public/favicon.ico')) app.use(bodyParser.json()) |
