aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/app.js
diff options
context:
space:
mode:
authorLurifax <stianalexanderolsen@gmail.com>2013-04-26 10:48:02 +0200
committerLurifax <stianalexanderolsen@gmail.com>2013-04-26 10:48:02 +0200
commit9e8383303ea5e305de916150ab93e2572ec0eac0 (patch)
treee9b1e74263bff498860af72a3257c59f6e5e87ec /app.js
parentAdded img to divid home (diff)
downloadDivid-9e8383303ea5e305de916150ab93e2572ec0eac0.tar.gz
Changed text
Diffstat (limited to '')
-rw-r--r--app.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/app.js b/app.js
index 95f0b64..9fcfc31 100644
--- a/app.js
+++ b/app.js
@@ -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 || 3000);
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/