-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
53 lines (44 loc) · 1.31 KB
/
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
const bodyParser = require('body-parser');
const express = require('express');
const keys = require('./config/keys');
const mongoose = require('mongoose');
const cookieSession = require('cookie-session');
const passport = require('passport');
// config
const PORT = process.env.PORT || 5150;
require('./models/User'); // load model before running passport service
require('./models/Survey');
require('./services/passport');
mongoose.connect(keys.mongoURI);
// init app
const app = express();
app.disable('x-powered-by');
// middlewares
if (process.env.NODE_ENV !== 'production') {
const morgan = require('morgan');
// dev logging, in prod we just use heroku logs
app.use(morgan('combined'));
}
app.use(bodyParser.json());
app.use(
cookieSession({
maxAge: 30 * 24 * 60 * 60 * 1000, // 30 days
keys: [keys.cookieKey]
})
);
app.use(passport.initialize());
app.use(passport.session());
// routing
require('./routes/authRoutes')(app);
require('./routes/billingRoutes')(app);
require('./routes/surveyRoutes')(app);
if (process.env.NODE_ENV === 'production') {
app.use(express.static('client/build'));
const path = require('path');
app.get('*', (req, res) => {
res.sendFile(path.resolve(__dirname, 'client', 'build', 'index.html'));
});
}
app.listen(PORT, () => {
console.log(`listening on PORT:${PORT}`);
});