-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.js
More file actions
66 lines (49 loc) · 1.97 KB
/
app.js
File metadata and controls
66 lines (49 loc) · 1.97 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
56
57
58
59
60
61
62
63
64
65
66
const createError = require('http-errors');
const express = require('express');
const path = require('path');
const cookieParser = require('cookie-parser');
const logger = require('morgan');
const indexRouter = require('./routes/index');
const usersRouter = require('./routes/users');
const catalogRouter = require("./routes/catalog"); //Import routes for "catalog" area of site
require('dotenv').config()
const app = express();
const mongoose = require("mongoose");
mongoose.set("strictQuery", false);
const mongoDB = `mongodb+srv://${process.env.USER_NAME}:${process.env.PASSWORD}@cluster0.ofmazu6.mongodb.net/local_lib?retryWrites=true&w=majority`;
main().catch((err) => console.log(err));
async function main() {
await mongoose.connect(mongoDB);
}
// Create a "genre" model just by requiring the module
const genre = require("./models/genre");
// view engine setup
//set the 'views' value to specify the folder where the templates will be stored
app.set('views', path.join(__dirname, 'views'));
//set the 'view engine' value to specify the template library
app.set('view engine', 'jade');
app.use(logger('dev'));
//needed to populate req.body with the form fields
app.use(express.json());
app.use(express.urlencoded({ extended: false }));
app.use(cookieParser());
//serve all the static files in the /public directory in the project root
app.use(express.static(path.join(__dirname, 'public')));
app.use('/', indexRouter);
app.use('/users', usersRouter);
app.use('/catalog', catalogRouter);
// catch 404 and forward to error handler
//if you get to this point, there is something wrong with the request
app.use(function(req, res, next) {
next(createError(404));
});
// error handler
app.use(function(err, req, res, next) {
// set locals, only providing error in development
res.locals.message = err.message;
res.locals.error = req.app.get('env') === 'development' ? err : {};
// render the error page
res.status(err.status || 500);
res.render('error');
});
module.exports = app;