-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.js
54 lines (40 loc) · 1.45 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
53
/**
* Module dependencies.
*/
var express = require('express')
, routes = require('./routes')
, https = require('https')
, http = require('http')
, path = require('path')
, mongoose = require('mongoose')
;
var app = express();
// the variable process.env.DB_URI is specified as a configuration variable
// For Heroku, this can be set as $> heroku config:set DB_URI=mongodb://...
// And locally, can be specifed in a .env file
// The confidential key is not committed to this open source project for simple reasons.
console.log("Using DB_URI="+process.env.DB_URI);
var db = mongoose.connect(process.env.DB_URI);
// see https://datamarket.azure.com/account/keys
app.configure(function(){
app.set('port', process.env.PORT || 3000);
app.set('views', __dirname + '/views');
app.set('view engine', 'ejs');
app.use(express.favicon());
app.use(express.logger('dev'));
app.use(express.bodyParser());
app.use(express.methodOverride());
app.use(express.cookieParser('your secret here'));
app.use(express.session());
app.use(app.router);
app.use(require('stylus').middleware(__dirname + '/public'));
app.use(express.static(path.join(__dirname, 'public')));
});
app.configure('development', function(){
app.use(express.errorHandler());
});
app.get('/', routes.index.app);
app.get('/logs', routes.index.logs);
http.createServer(app).listen(app.get('port'), function(){
console.log("Express server listening on port " + app.get('port'));
});