-
Notifications
You must be signed in to change notification settings - Fork 29
/
app.js
executable file
·109 lines (93 loc) · 2.63 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
const express = require('express');
const path = require('path');
const logger = require('morgan');
const cookieParser = require('cookie-parser');
const bodyParser = require('body-parser');
let handlebars = require('express-handlebars');
const cron = require('node-cron');
const {
uglify,
indexDocs
} = require('./lib/common');
const config = require('./config/config.json');
const route = require('./routes/index');
const app = express();
// view engine setup
app.set('views', path.join(__dirname, '/views'));
app.engine('hbs', handlebars({
extname: 'hbs',
layoutsDir: path.join(__dirname, 'views', 'layouts'),
defaultLayout: 'layout.hbs'
}));
app.set('view engine', 'hbs');
// Handlebars helpers
handlebars = handlebars.create({
helpers: {
env: () => {
if(process.env.NODE_ENV === 'production'){
return '.min';
}
return '';
}
}
});
app.use(logger('dev'));
app.set('port', process.env.PORT || 5555);
app.set('bind', process.env.BIND || '0.0.0.0');
app.use(bodyParser.json());
app.use(bodyParser.urlencoded({ extended: false }));
app.use(cookieParser());
app.use(express.static(path.join(__dirname, 'public')));
// Make stuff accessible to our router
app.use((req, res, next) => {
req.handlebars = handlebars;
next();
});
app.use('/', route);
// catch 404 and forward to error handler
app.use((req, res, next) => {
const err = new Error('Not Found');
err.status = 404;
next(err);
});
// error handlers
// development error handler
// will print stacktrace
if(app.get('env') === 'development'){
app.use((err, req, res, next) => {
res.status(err.status || 500);
res.send({
message: err.message,
error: err
});
});
}
// production error handler
// no stacktraces leaked to user
app.use((err, req, res, next) => {
res.status(err.status || 500);
res.send({
message: err.message,
error: err
});
});
// add some references to app
app.config = config;
// set the indexing to occur every Xmins - defaults to every 5mins
cron.schedule(config.updateDocsCron || '*/5 * * * *', async () => {
await indexDocs(app);
console.log('[INFO] Re-indexing complete');
});
// uglify assets
uglify()
.then(async() => {
// kick off initial index
await indexDocs(app);
console.log('[INFO] Indexing complete');
console.log('[INFO] Node ENV', process.env.NODE_ENV);
// serve the app
app.listen(app.get('port'), app.get('bind'), () => {
console.log('[INFO] githubdocs running on host: http://' + app.get('bind') + ':' + app.get('port'));
});
});
module.exports = app;