-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.js
68 lines (50 loc) · 1.84 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
// ℹ️ Gets access to environment variables/settings
// https://www.npmjs.com/package/dotenv
require('dotenv/config');
// ℹ️ Connects to the database
require('./db');
// Handles http requests (express is node js framework)
// https://www.npmjs.com/package/express
const express = require('express');
const app = express();
//auth
const session = require('express-session');
const bcrypt = require('bcrypt');
// cookies
const MongoStore = require('connect-mongo');
app.use(session({
secret: 'NotMyAge',
saveUninitialized: false,
resave: false,
cookie: {
maxAge: 1000*60*60*24// is in milliseconds. expiring in 1 day
},
store: new MongoStore({
mongoUrl: process.env.MONGODB_URI || "mongodb://localhost/agoge-app",
ttl: 60*60*24, // is in seconds. expiring in 1 day
})
}));
const path = require('path');
app.use(express.static(path.join(__dirname, 'public')));
// ℹ️ This function is getting exported from the config folder. It runs most middlewares
require('./config')(app);
// 👇 Start handling routes here
// Contrary to the views version, all routes are controled from the routes/index.js
const allRoutes = require('./routes');
app.use('/api', allRoutes);
const authRoutes = require("./routes/auth.routes");
app.use("/api", authRoutes);
const lessonRoutes = require("./routes/lesson.routes")
app.use("/api", lessonRoutes)
const cloudinaryRoutes = require('./routes/cloudinary.routes')
app.use("/api", cloudinaryRoutes);
//! const notesRoutes = require
app.use((req, res, next) => {
// If no routes match, send them the React HTML.
res.sendFile(__dirname + "/public/index.html");
});
/*const authRoutes = require("./routes/stdportal.routes");
app.use("/api", stdPortal);*/
// ❗ To handle errors. Routes that don't exist or errors that you handle in specific routes
require('./error-handling')(app);
module.exports = app;