-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathserver.js
42 lines (32 loc) · 1.09 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
const bodyParser = require('body-parser');
const cors = require('cors');
const express = require('express');
const path = require('path');
const { getCovidData } = require('./get-vaccination-data')
const db = require('./database');
const router = require('./routes/router')
const app = express();
const port = process.env.PORT || 5000;
app.use(bodyParser.json());
app.use(bodyParser.urlencoded({ extended: true }));
app.use(cors());
db.on('error', console.error.bind(console, 'MongoDB connection error:'))
// app.get('/', (req, res) => {
// res.send('Fuck germs!');
// })
app.get('/api/ireland-data', async (req, res) => {
const irelandData = await getCovidData();
res.send(irelandData);
});
app.use('/api', router)
if (process.env.NODE_ENV === 'production') {
// Serve any static files
app.use(express.static(path.join(__dirname, 'client/build')));
// Handle React routing, return all requests to React app
app.get('*', function(req, res) {
res.sendFile(path.join(__dirname, 'client/build', 'index.html'));
});
}
app.listen(port, () => {
console.log(`Listening on port ${port}`);
});