-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathapp.js
52 lines (44 loc) · 1.76 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
var express = require('express'),
routes = require('./routes'),
http = require('http'),
path = require('path'),
mongoose = require('mongoose');
config = require('./config.json'),
land = require('./routes/land'),
staticHTML = require('./routes/staticHTML');
var MONGO_URI = (process.env.MONGOHQ_URL || config.mongo.uri);
var app = express();
// all environments
app.set('port', process.env.PORT || 3000);
app.set('views', __dirname + '/views');
app.set('view engine', 'hjs');
app.use(express.favicon());
app.use(express.logger('dev'));
app.use(express.bodyParser());
app.use(express.methodOverride());
app.use(app.router);
app.use(require('less-middleware')({ src: __dirname + '/public' }));
app.use(express.static(path.join(__dirname, 'public')));
app.use('/components', express.static(__dirname + '/bower_components'));
// development only
if ('development' == app.get('env')) {
app.use(express.errorHandler());
}
app.get('/', routes.index);
app.get('/preview', routes.map);
app.get('/test', routes.test);
app.get('/land/add', land.add);
app.get('/land/:id', land.detail);
app.get('/survey', staticHTML.render('survey/index')); // via website
app.get('/survey/ga', staticHTML.render('survey/index')); // via Google Adwords
app.get('/survey/sm', staticHTML.render('survey/index')); // via Social Media
app.get('/survey/thanks', staticHTML.render('survey/thanks'));
app.get('/donation/thanks', staticHTML.render('donation/thanks'));
app.get('/donation/cancelled', staticHTML.render('donation/cancelled'));
app.get('/mailinglist/thanks', staticHTML.render('mailinglist/thanks'));
mongoose.connect(MONGO_URI, function(err) {
if (err) throw err;
});
http.createServer(app).listen(app.get('port'), function(){
console.log('Express server listening on port ' + app.get('port'));
});