This repository has been archived by the owner on Nov 8, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
server.js
69 lines (52 loc) · 1.85 KB
/
server.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
64
65
66
67
68
69
var path = require('path'),
express = require('express'),
routes = require(__dirname + '/app/routes.js'),
app = express(),
port = (process.env.PORT || 3000),
// Grab environment variables specified in Procfile or as Heroku config vars
username = process.env.USERNAME,
password = process.env.PASSWORD,
env = process.env.NODE_ENV || 'development';
// Authenticate against the environment-provided credentials, if running
// the app in production (Heroku, effectively)
if (env === 'production') {
if (!username || !password) {
console.log('Username or password is not set, exiting.');
process.exit(1);
}
app.use(express.basicAuth(username, password));
}
// Application settings
app.engine('html', require(__dirname + '/lib/template-engine.js').__express);
app.set('view engine', 'html');
app.set('vendorViews', __dirname + '/govuk_modules/govuk_template/views/layouts');
app.set('views', __dirname + '/app/views');
// Middleware to serve static assets
app.use('/public', express.static(__dirname + '/public'));
app.use('/public', express.static(__dirname + '/govuk_modules/govuk_template/assets'));
app.use('/public', express.static(__dirname + '/govuk_modules/govuk_frontend_toolkit'));
app.use(express.favicon(path.join(__dirname, 'govuk_modules', 'govuk_template', 'assets', 'images','favicon.ico')));
// send assetPath to all views
app.use(function (req, res, next) {
res.locals({'assetPath': '/public/'});
next();
});
// routes (found in app/routes.js)
routes.bind(app);
// auto render any view that exists
app.get(/^\/([^.]+)$/, function (req, res) {
var path = (req.params[0]);
res.render(path, function(err, html) {
if (err) {
console.log(err);
res.send(404);
} else {
res.end(html);
}
});
});
// start the app
app.listen(port);
console.log('');
console.log('Listening on port ' + port);
console.log('');