-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.js
More file actions
55 lines (44 loc) · 1.42 KB
/
index.js
File metadata and controls
55 lines (44 loc) · 1.42 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
48
49
50
51
52
53
54
55
import express from 'express'
import bodyParser from 'body-parser';
import mongoose from 'mongoose';
import routes from './routes/api';
import path from 'path';
import helmet from 'helmet';
import session from 'express-session';
const app = express();
require('dotenv').config();
const port = process.env.PORT || 3000;
//connect to the database
mongoose.connect(process.env.DB, { useNewUrlParser: true, useUnifiedTopology: true, useFindAndModify: false, useCreateIndex: true })
.then(() => {
console.log(`Database connected successfully`)
})
.catch(err => console.log(err));
//since mongoose promise is depreciated, we overide it with node's promise
mongoose.Promise = global.Promise;
app.use((req, res, next) => {
res.header("Access-Control-Allow-Origin", "*");
res.header("Access-Control-Allow-Headers", "Origin, X-Requested-With, Content-Type, Accept");
next();
});
app.use(helmet())
app.use(bodyParser.json());
app.use(session({
secret: process.env.SECRET,
resave: true,
saveUninitialized: true,
maxAge: 5 * 60 * 60 * 1000, // 8 hours
}))
app.use('/api', routes);
//app.use(express.static(path.join(__dirname, 'build')));
app.use(express.static("client/build"));
app.get("*", (req, res) => {
res.sendFile(path.resolve(__dirname, "client", "build", "index.html"));
});
app.use((err, req, res, next) => {
console.log(err);
next();
});
app.listen(port, () => {
console.log(`Server running on port ${port}`)
});