-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
59 lines (47 loc) · 1.43 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
54
55
56
57
58
59
const express = require('express');
const mongoose = require('mongoose');
const cookieSession = require('cookie-session');
const passport = require('passport');
const bodyParser = require('body-parser');
// Service and API keys setup
const keys = require('./config/keys');
// DB Setup
// - Using Mongoose
// - Require models
require('./models/User');
mongoose.connect(keys.mongoURI);
// - Using Postgress and Bookshelf
// - Require models
// Require services
require('./services/passport');
// Creating Express app.
const app = express();
// Setting-Up Middleware
// - Setting up body-parser for req post body data
app.use(bodyParser.json());
// - Setting up session with cookies
app.use(
cookieSession({
maxAge: 7 * 24 * 60 * 60* 1000,
keys: [keys.cookieKey]
})
);
// - Setting up Passport cookie serialize and deserialize
app.use(passport.initialize());
app.use(passport.session());
// Setting up Routes
require('./routes/authRoutes')(app);
// Set up app serving in prod mode
if (process.env.NODE_ENV === 'production') {
// Express will serve up production assets
// like main.js and main.css files!
app.use(express.static('client/build'));
// Express will serve up the index.html file
// if it doesn't recognize the route
const path = require('path');
app.get('*', (req, res) => {
res.sendFile(path.resolve(__dirname, 'client', 'build', 'index.html'));
});
}
const PORT = process.env.PORT || 5000;
app.listen(PORT);