-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathserver.js
39 lines (32 loc) · 963 Bytes
/
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
import config from "./config";
import express from "express";
import apiRouter from "./api";
import sassMiddleware from "node-sass-middleware";
import path from "path";
import bodyParser from "body-parser";
const server = express();
server.use(bodyParser.json());
server.use(sassMiddleware({
src: path.join(__dirname, "sass"),
dest: path.join(__dirname, "public")
}));
import serverRender from "./serverRender";
server.set("view engine", "ejs");
server.get(['/', '/contest/:contestId'],(req, res) => {
serverRender(req.params.contestId)
.then(({initialMarkup, initialData}) => {
res.render('index', {
initialMarkup,
initialData
});
})
.catch(error => {
console.error(error);
res.status(404).send("Bad Request");
});
});
server.use("/api", apiRouter);
server.use(express.static("public"));
server.listen(config.port, config.host, () => {
console.log("Express is running on "+config.port);
});