-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
32 lines (26 loc) · 951 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
require('dotenv').config();
const express = require('express');
const morgan = require('morgan');
const mongoose = require('mongoose');
const cors = require('cors');
const bodyParser = require('body-parser');
const app = express();
// mongoose.connect(process.env.MONGODB_URI || 'mongodb://localhost/poordash', {
// useNewUrlParser: true,
// useCreateIndex: true,
// useUnifiedTopology: true
// }, () => { console.log('connected to mongoDB') });
// App middlewares setup
app.use(morgan('combined'));
app.use(express.json());
app.use(express.urlencoded({ extended: true }));
app.use(cors());
app.use(bodyParser.urlencoded({
extended: true
}));
app.use(bodyParser.json());
if(process.env.NODE_ENV === 'production') app.use(express.static('client/build'));
const routes = require('./routes');
app.use(routes);
const PORT = process.env.PORT || 3001;
app.listen(PORT, () => console.log(`Server started on PORT: ${PORT}`));