-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.js
More file actions
47 lines (36 loc) · 1.26 KB
/
index.js
File metadata and controls
47 lines (36 loc) · 1.26 KB
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
const express = require('express');
const keys = require('./config/keys')
const mongoose = require('mongoose');
const cookieSession = require('cookie-session');
const bodyParser = require("body-parser")
const passport = require('passport');
require('./models/user');
require('./models/Survey');
require("./services/passport");
mongoose.connect(keys.mongoURI)
const app = express();
app.use(bodyParser.json());
app.use(
cookieSession({
maxAge: 30 * 24 * 60 * 60 * 1000, // 30 days
keys: [keys.cookieKey] // Secret key for signing cookies
})
);
app.use(passport.initialize());
app.use(passport.session());
require('./routes/authRoutes')(app);
require('./routes/billingRoutes')(app);
require('./routes/surveyRoutes')(app);
if (process.env.NODE_ENV === 'production') {
// Serve static assets (main.js, main.css) in production
app.use(express.static('client/build'))
// Handle React routing, return all requests to React app (Express 5 / path-to-regexp v6 compatible)
const path = require('path');
app.get("/files{/*path}", (req, res) => {
res.sendFile(path.resolve(__dirname, 'client', 'build', 'index.html'));
});
}
const PORT = process.env.PORT || 8000;
app.listen(PORT, () => {
console.log(`Server is running on http://localhost:${PORT}`);
});