-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.js
42 lines (25 loc) · 778 Bytes
/
app.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 express = require('express');
const app = express();
const port = process.env.PORT || 8000;
const bodyParser = require('body-parser');
//Serving Static files
app.use(express.static('public'));
//import Wish
require('./models/wish')
// parse application/x-www-form-urlencoded
app.use(bodyParser.urlencoded({ extended: false }))
// parse application/json
app.use(bodyParser.json())
//import routes
require('./routes')(app);
//In case of Prodyction
app.use(express.static('client/build'))
const path = require('path');
app.get('*',(req,res) =>{
res.sendFile(path.resolve(__dirname,'client','build','index.html'))
})
//Routing
app.listen(port, () => {
console.log('Server is running on port' +port);
console.log('Server ' +process.env.PORT);
})