-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.js
32 lines (23 loc) · 842 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
const express = require('express');
const bodyParser = require('body-parser');
const cors = require('cors');
const app = express();
const connectDB = require('./config/db');
const playerRouter = require('./routes/player-router');
const path = require('path');
require('dotenv').config();
connectDB();
app.use(bodyParser.urlencoded({ extended: true }));
app.use(cors());
app.use(bodyParser.json());
// app.get('/', (req, res) => {
// res.send('Hello World!')
// })
app.use('/', playerRouter);
if(process.env.NODE_ENV === 'production') {
app.use(express.static('client/build'));
app.get('*', (req,res) => {
res.sendFile(path.join(__dirname, 'client', 'build', 'index.html')); //Relative path
});
}
app.listen(process.env.PORT || 3000, () => console.log(`Server running on port ${process.env.PORT || 3000}`));