-
Notifications
You must be signed in to change notification settings - Fork 1
/
app.js
37 lines (30 loc) · 1.06 KB
/
app.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
'use strict';
// Module dependencies
var express = require('express');
var http = require('http');
var path = require('path');
var app = express();
// all environments
app.set('port', process.env.PORT || 3000);
app.set('views', path.join(__dirname, 'views'));
app.set('view engine', 'ejs');
app.use(express.favicon());
app.use(express.logger('dev'));
app.use(express.json());
app.use(express.urlencoded());
app.use(express.methodOverride());
app.use(app.router);
// pass in apps so routes hae access to app var
// had to keep this after express.json() so that post params come into the post route with a request.body
require('./routes')(app);
// include both public and bower_components dir for static assets
app.use(express.static(path.join(__dirname, 'public')))
.use(express.static(path.join(__dirname, 'bower_components')));
// development only
if ('development' == app.get('env')) {
app.use(express.errorHandler());
}
// start server
http.createServer(app).listen(app.get('port'), function(){
console.log('Express server listening on port ' + app.get('port'));
});