-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathserver.js
More file actions
36 lines (27 loc) · 841 Bytes
/
server.js
File metadata and controls
36 lines (27 loc) · 841 Bytes
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
/* eslint-disable */
var path = require("path");
var express = require("express");
var webpack = require("webpack");
var config = require("./webpack.config");
var app = express();
var compiler = webpack(config);
var SERVER_PORT = process.env.OPENSHIFT_NODEJS_PORT || 8080
var SERVER_IP = process.env.OPENSHIFT_NODEJS_IP || "127.0.0.1"
app.use(require("webpack-dev-middleware")(compiler, {
noInfo: true,
publicPath: config.output.publicPath
}));
app.use(require("webpack-hot-middleware")(compiler));
app.get("/health", function(req, res) {
res.send(200);
});
app.get("*", function(req, res) {
res.sendFile(path.join(__dirname, "index.html"));
});
app.listen(SERVER_PORT, SERVER_IP, function (err) {
if (err) {
console.log(err);
return;
}
console.log("Listening at http://" + SERVER_IP + ":" + SERVER_PORT);
});