-
Notifications
You must be signed in to change notification settings - Fork 24
/
index.js
34 lines (26 loc) · 815 Bytes
/
index.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
const express = require("express");
const bodyParser = require("body-parser");
const path = require("path");
const config = require("./config/keys");
const app = express();
const PORT = process.env.PORT || 5000;
//Routes
const dialogFlowRoutes = require("./routes/dialogFlow");
const fulfillmentRoutes = require("./routes/fulfillment");
app.use(bodyParser.json());
app.get("/api", (req, res) => {
res.send({ hello: "there" });
});
app.use(dialogFlowRoutes);
app.use(fulfillmentRoutes);
if (process.env.NODE_ENV === "production") {
// js and css files
app.use(express.static("client/build"));
// index.html
app.get("*", (req, res) => {
res.sendFile(path.resolve(__dirname, "client", "build", "index.html"));
});
}
app.listen(PORT, () => {
console.log(`server started at port ${PORT}`);
});