diff options
author | Erling Aaby <erlinaa@stud.hist.no> | 2013-04-26 10:32:44 +0200 |
---|---|---|
committer | Erling Aaby <erlinaa@stud.hist.no> | 2013-04-26 10:32:44 +0200 |
commit | 1ad9bf0060a7951df30c76577f9babfe1a66e542 (patch) | |
tree | 03a29bfebc052babbe6c045c6492d7dbc91080a7 /app.js | |
parent | fixed bug (diff) | |
download | Divid-1ad9bf0060a7951df30c76577f9babfe1a66e542.tar.gz |
removed animation, added illustrations instead, removed faaq, added new faq.ejs
Diffstat (limited to 'app.js')
-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 || 8000); + app.set('port', process.env.PORT || 8001); 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/ |