-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathserver.js
79 lines (70 loc) · 1.77 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
'use strict'
const Hapi = require('hapi')
const Path = require('path')
const Dotenv = require('dotenv')
const Handlebars = require('handlebars')
const HandlebarsRepeatHelper = require('handlebars-helper-repeat')
// extend handlebars instance
Handlebars.registerHelper('repeat', HandlebarsRepeatHelper)
// import environment variables from local secrets.env file
Dotenv.config({ path: Path.resolve(__dirname, 'secrets.env') })
// create new server instance and connection information
const server = new Hapi.Server({
host: 'localhost',
port: process.env.PORT || 3000
})
// register plugins, configure views and start the server instance
async function start () {
// register plugins to server instance
await server.register([
{
plugin: require('inert')
},
{
plugin: require('vision')
},
{
plugin: require('./web/authentication')
},
{
plugin: require('./web/base')
},
{
plugin: require('./web/movies')
},
{
plugin: require('./web/tv-shows')
},
{
plugin: require('./web/user-profile')
},
{
plugin: require('./web/add-user-to-views')
}
])
// view configuration
const viewsPath = Path.resolve(__dirname, 'public', 'views')
server.views({
engines: {
hbs: Handlebars
},
path: viewsPath,
layoutPath: Path.resolve(viewsPath, 'layouts'),
layout: 'layout',
helpersPath: Path.resolve(viewsPath, 'helpers'),
partialsPath: Path.resolve(viewsPath, 'partials'),
isCached: process.env.NODE_ENV === 'production',
context: {
title: 'Futureflix'
}
})
// start your server
try {
await server.start()
console.log(`Server started → ${server.info.uri}`)
} catch (err) {
console.error(err)
process.exit(1)
}
}
start()