diff options
author | robertkj <joramo40@hotmail.com> | 2013-04-26 09:16:03 +0200 |
---|---|---|
committer | robertkj <joramo40@hotmail.com> | 2013-04-26 09:16:03 +0200 |
commit | bfc56f2cc5c0c2b3d4e19fd230b52af91ca97781 (patch) | |
tree | f7b14d442bcde5ab3cc9219c4fc58f7f7d501472 /app.js | |
parent | Fixed divid home placements, added text, styled and added pictures (diff) | |
download | Divid-bfc56f2cc5c0c2b3d4e19fd230b52af91ca97781.tar.gz |
fixed bug
Diffstat (limited to '')
-rw-r--r-- | app.js | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -17,7 +17,7 @@ var app = express(); // initiates express app.configure(function(){ // this controls the port the application will be running on. // by adding 'process.enc.PORT' we enable the app to run on automated systems like heroku - app.set('port', process.env.PORT || 8001); + app.set('port', process.env.PORT || 8000); app.set('views', __dirname + '/views'); // sets views to the right directory app.set('view engine', 'ejs'); // initiates viewengine. We use EJS, or embedded js - http://embeddedjs.com/ |