-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.js
63 lines (53 loc) · 1.4 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
54
55
56
57
58
59
60
61
62
63
var express = require('express');
var config = require('./public/js/config');
var app = module.exports = express.createServer();
//
// CONFIGURATION
//
app.configure(function(){
app.use(express.methodOverride());
app.use(express.bodyDecoder());
app.use(app.router);
app.use(express.logger());
app.use(express.staticProvider(__dirname + '/public'));
app.set('views', __dirname + '/public');
app.set('view engine', 'mustache');
app.set('view options', {
layout: false // we don't need no stinkin' layouts!
});
// Use mustache
app.register('.html', {
render: function(str, options) {
return require('mustache').to_html(str, options.locals);
}
});
});
app.configure('development', function() {
config.type = 'development';
app.use(express.errorHandler({ dumpExceptions: true, showStack: true }));
});
app.configure('production', function() {
config.type = 'production';
app.use(express.errorHandler());
});
//
// ROUTES
//
app.get("/", function(req, res) {
res.render('index.html', {
locals: config
});
});
app.get("/article/:id", function(req, res) {
res.render('index.html', {
locals: config
});
});
//
// RUN SERVER
// - Only listen on $ node app.js
//
if (!module.parent) {
app.listen(Number(config.serverport));
console.log("Express server listening on port %d", app.address().port);
}