-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.js
92 lines (71 loc) · 2.49 KB
/
app.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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
require('dotenv').config();
const bodyParser = require('body-parser');
const cookieParser = require('cookie-parser');
const express = require('express');
const favicon = require('serve-favicon');
const hbs = require('hbs');
const mongoose = require('mongoose');
const logger = require('morgan');
const path = require('path');
const passport = require('passport');
const session = require('express-session');
const MongoStore = require('connect-mongo');
const app_name = require('./package.json').name;
const MONGODB_URI = process.env.MONGODB_URI || 'mongodb://localhost/olympi-server'
mongoose
.connect(MONGODB_URI, {
useNewUrlParser: true,
useUnifiedTopology: true,
useCreateIndex: true,
})
.then(x => {
console.log(`Connected to Mongo! Database name: "${x.connections[0].name}"`)
})
.catch(err => {
console.error('Error connecting to mongo', err)
});
// const debug = require('debug')(`${app_name}:${path.basename(__filename).split('.')[0]}`);
const app = express();
// Middleware Setup
app.use(logger('dev'));
app.use(bodyParser.json());
app.use(bodyParser.urlencoded({ extended: false }));
app.use(cookieParser());
// ADD CORS SETTINGS HERE TO ALLOW CROSS-ORIGIN INTERACTION:
const cors = require('cors');
app.use(cors({
credentials: true,
origin: ['http://localhost:3000']
}))
// Enable authentication using session + passport
app.use(session({
secret: `${app_name}-shhhhhhht`,
resave: true,
saveUninitialized: true,
store: MongoStore.create({
mongoUrl: MONGODB_URI,
})
}))
require('./passport')(app);
// app.set('views', path.join(__dirname, 'views'));
// app.set('view engine', 'hbs');
// // app.use(express.static(path.join(__dirname, 'public')));
// app.use(favicon(path.join(__dirname, 'public', 'images', 'favicon.ico')));
// default value for title local
app.locals.title = 'Express - Generated with IronGenerator';
// ROUTES MIDDLEWARE STARTS HERE:
const authRoutes = require('./routes/auth-routes');
app.use('/auth', authRoutes);
const videosRoutes = require('./routes/videos-routes');
app.use('/videos', videosRoutes);
const notifRoutes = require('./routes/notif-routes');
app.use('/notifications', notifRoutes);
// Serve static files from client/build folder
app.use(express.static('olympi-client/build'));
// For any other routes: serve client/build/index.html SPA
app.use((req, res, next) => {
res.sendFile(`${__dirname}/olympi-client/build/index.html`, err => {
if (err) next(err)
})
});
module.exports = app;