-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathserver.js
More file actions
executable file
·85 lines (68 loc) · 2.47 KB
/
server.js
File metadata and controls
executable file
·85 lines (68 loc) · 2.47 KB
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
var path = require('path'),
express = require('express'),
routes = require(__dirname + '/app/routes.js'),
favicon = require('serve-favicon'),
app = express(),
basicAuth = require('basic-auth-connect'),
bodyParser = require('body-parser'),
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(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', path.join(__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('/public/images/icons', express.static(__dirname + '/govuk_modules/govuk_frontend_toolkit/images'));
// Elements refers to icon folder instead of images folder
app.use(favicon(path.join(__dirname, 'govuk_modules', 'govuk_template', 'assets', 'images','favicon.ico')));
// Support for parsing data in POSTs
app.use(bodyParser.json());
app.use(bodyParser.urlencoded({
extended: true
}));
// send assetPath to all views
app.use(function (req, res, next) {
res.locals.assetPath="/public/";
next();
});
// routes (found in app/routes.js)
if (typeof(routes) != "function"){
console.log(routes.bind);
console.log("Warning: the use of bind in routes is deprecated - please check the prototype kit documentation for writing routes.")
routes.bind(app);
} else {
app.use("/", routes);
}
// 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.sendStatus(404);
} else {
res.end(html);
}
});
});
// start the app
app.listen(port);
console.log('');
console.log('Listening on port ' + port);
console.log('');