-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathapp.js
50 lines (41 loc) · 1.38 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
const express = require('express');
const path = require('path');
const logger = require('morgan');
const cookieParser = require('cookie-parser');
const bodyParser = require('body-parser');
const mongoose = require('mongoose');
const news = require('./routes/news');
const user = require('./routes/user');
const test = require('./routes/norman');
const passport = require('passport');
const cfg = require("./config/settings.js");
const app = express();
mongoose.connect(cfg.database, {
useMongoClient: true
});
const db = mongoose.connection;
//throw error if db connection issue
db.on('error', console.error.bind(console, 'MongoDB connection error:'));
// view engine setup
app.set('views', path.join(__dirname, 'views'));
app.set('view engine', 'ejs');
app.use(logger('dev'));
app.use(bodyParser.json());
app.use(bodyParser.urlencoded({extended: true}));
app.use(cookieParser());
app.use(express.static(path.join(__dirname, 'public')));
// noinspection JSUnresolvedFunction
app.use(passport.initialize());
require('./config/passport');
app.use('/static', express.static(path.join(__dirname, 'public')));
app.use('/api/news', news);
app.use('/api/user', user);
app.use('/api/test', test);
// catch 404 and forward to error handler
// noinspection JSUnusedLocalSymbols
app.use(function (err, req, res) {
err = new Error('Not Found');
err.status = 404;
//next(err);
});
module.exports = app;