-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathserver.js
78 lines (69 loc) · 1.56 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
70
71
72
73
74
75
76
77
78
require('dotenv').config();
const Hapi = require('hapi');
const Path = require('path');
const Vision = require('vision');
const Inert = require('inert');
const NunjucksHapi = require('nunjucks-hapi');
const Good = require('good');
const Sequelize = require('./plugins/hapi-sequelize.js');
const Api = require('./api');
const Views = require('./views');
const setup = {
host: process.env.NODE_ENV === 'production' ? '0.0.0.0' : 'localhost',
port: process.env.PORT || '8080',
};
const BasicServer = new Hapi.Server({
connections: {
routes: {
files: {
relativeTo: Path.join(__dirname, 'static'),
},
},
},
});
BasicServer.connection({
host: setup.host,
port: setup.port,
});
BasicServer.register(Sequelize);
BasicServer.register(Api, {
routes: {
prefix: '/api',
},
});
BasicServer.register(Inert);
BasicServer.register(Vision, () => {
BasicServer.views({
engines: {
html: NunjucksHapi,
},
path: Path.join(__dirname, 'templates'),
});
});
BasicServer.register(Views);
BasicServer.register({
register: Good,
options: {
ops: {
interval: 1000,
},
reporters: {
console: [{
module: 'good-squeeze',
name: 'Squeeze',
args: [{
log: '*',
response: '*',
}],
}, {
module: 'good-console',
}, 'stdout'],
},
},
}, (err) => {
if (err) BasicServer.log(['error', 'good'], err);
});
BasicServer.start(() => {
BasicServer.log(['info', 'BasicServer'], `Server started on ${setup.host}:${setup.port}`);
});
module.exports = BasicServer;