-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathserver.js
88 lines (77 loc) · 2.14 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
79
80
81
82
83
84
85
86
87
88
'use strict';
// Dot env module - allows use of .env
const dotenv = require('dotenv').load();
// Hapi modules
const Hapi = require('hapi');
const Good = require('good');
const Path = require('path');
const Hoek = require('hoek');
// Server modules
const server = new Hapi.Server();
const routes = require('./config/routes');
console.log(process.env.API_KEY);
// Server connection
server.connection({ port : 3000 });
// Assign routes to server
server.route(routes);
// Going to try and create a directory handler to handle the serving of
// multiple static files within a single directory. E.g. public/
server.register(require('inert'), (err) => {
if (err) {
throw err;
}
// Here we everything from public/ to '/'
// For example /public/images/space-test.jpg = /images/space-test.jpg
// @note -> awesome!
server.route({
method : 'GET',
path : '/{param*}',
handler : {
directory : {
path : 'public',
listing : true
}
}
})
});
// Configure View Engine
server.register(require('vision'), (err) => {
Hoek.assert(!err, err);
server.views({
engines : {
'html' : {
module: require('handlebars'),
compileMode: 'sync'
}
},
relativeTo : __dirname,
path : './views',
// By default, render the master layout file, unless specified in the route.
layout : true,
layoutPath : './views/layout',
helpersPath : './views/helpers'
});
});
// Register good console to the server, then run -> gives us detailed output
server.register({
register: Good,
options: {
reporters: [{
reporter: require('good-console'),
events: {
response: '*',
log: '*'
}
}]
}
}, (err) => {
if (err) {
throw err; // something bad happened loading the plugin
}
server.start((err) => {
if (err) {
throw err;
}
server.log('info', 'Server running at: ' + server.info.uri);
});
});