-
Notifications
You must be signed in to change notification settings - Fork 0
/
server.js
34 lines (26 loc) · 1.18 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
var express = require('express')
var path = require("path")
var app = express()
// sending up static assets
app.use(express.static(__dirname + '/dist'))
app.use(express.static(__dirname + '/public'))
// sending up static files for OneTwo (duplicate index.html won't be a problem)
app.use(express.static(path.resolve(__dirname, 'OneTwo', 'dist')))
// Set up Front End
// =============================================================================
const port = process.env.PORT || 8080;
// This is a handler that sends out the front end (index.html)
const front_end_handler = function(request, response) {
response.sendFile(path.join(__dirname + '/dist/index.html'));
}
// These are the routes that should point to the front end
const front_end_routes = ['/', '/about', '/interests/:interest?'];
// Now we are using the handler for each of the front end routes
front_end_routes.forEach(route => app.get(route, front_end_handler));
// Special route that will point to the game OneTwo
app.get('/OneTwo', function(request, response) {
response.sendFile(path.resolve(__dirname, 'OneTwo', 'dist', 'index.html'))
})
app.listen(port, function() {
console.log("Node app is running at localhost:" + port)
})