index.js
1.17 KB
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
const express = require("express");
const path = require("path");
const bodyParser = require("body-parser");
const app = express();
app.set('trust proxy',true);
app.use(bodyParser.urlencoded({ extended: true }));
app.use(bodyParser.json());
app.use('/api/login',require('./server/routes/users/login'));
app.use('/api/register',require('./server/routes/users/register'));
app.use('/api/dialogflow', require('./server/routes/dialogflow'));
app.use('/api/latest',require('./server/routes/latest'));
app.use('/api/related',require('./server/routes/related'));
app.use('/api/news',require('./server/routes/news'));
// Serve static assets if in production
if (process.env.NODE_ENV === "production") {
// Set static folder
app.use(express.static(path.join(__dirname,'client/build')));
app.get('/api/greeting',(req,res)=>{
res.send("Hello World!");
});
// index.html for all page routes
app.get('*', (req, res) => {
res.sendFile(path.join(__dirname + 'client/build','index.html'));
});
}
const port = process.env.PORT || 5000;
app.listen(port, () => {
console.log(`Server Running at ${port}`)
});
// res.sendFile(path.resolve(__dirname, "client", "build", "index.html"));