-
Notifications
You must be signed in to change notification settings - Fork 15
/
server.js
60 lines (47 loc) · 1.33 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
const config = require("./config.json");
const morgan = require("morgan");
const ejs = require("ejs");
const express = require("express");
const bodyParser = require("body-parser");
const app = express();
app.use(morgan("short"));
app.use(morgan("combined"));
app.use(bodyParser.urlencoded({
extended: false
}));
app.use(bodyParser.json());
const apiRoute = require('./routes/api');
app.use("/api", apiRoute)
app.set('view engine', 'ejs');
app.use(express.static(__dirname + "/public"));
app.set('views', __dirname + '/views');
app.get("/", function (req, res) {
res.render("index.ejs");
});
app.get("/commands", function (req, res) {
res.render("commands.ejs");
});
app.get("/livechat", function (req, res) {
res.render("livechat.ejs");
});
app.get("/privacy", function (req, res) {
res.render("privacy.ejs");
});
app.get("/support", function (req, res) {
res.redirect(config.supportServer);
});
app.get("/invite", function (req, res) {
res.redirect(config.botInvite);
});
app.get('*', function(req, res){
res.status(404).render("404.ejs")
});
app.use(function(err, req, res, next) {
console.error('ERROR ', err.stack);
res.status(500).render('500.ejs', {
error: err
});
});
var listener = app.listen(config.port || process.env.PORT, function () {
console.log("Your app is listening on port " + listener.address().port);
});