-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.js
More file actions
64 lines (51 loc) · 1.55 KB
/
Copy pathapp.js
File metadata and controls
64 lines (51 loc) · 1.55 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
require('dotenv').config();
const cors = require('cors');
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');
mongoose.Promise = Promise;
const app = express();
app.use(express.static('public'));
// uncomment after placing your favicon in /public
app.use(logger('dev'));
app.use(cors());
app.use(bodyParser.json());
app.use(bodyParser.urlencoded({ extended: false }));
app.use(cookieParser());
// Express only serves static assets in production
if (process.env.NODE_ENV === 'production') {
app.use(express.static('../client/public'));
}
require('./routes/users.js')(app);
//DB Connection
mongoose.connect(process.env.MONGODB_URI || 'mongodb://localhost/movieTMDB', {
useMongoClient: true
});
var db = mongoose.connection;
db.on('error', function(error) {
console.log('Mongoose Error: ', error);
});
db.once('open', function() {
console.log('Mongoose connection successful.');
});
// catch 404 and forward to error handler
app.use(function(req, res, next) {
// var err = new Error('Not Found');
// err.status = 404;
// next(err);
res.redirect('/');
return;
});
// 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 : {};
// send error
res.status(err.status || 500);
res.json({ error: 'error' });
});
module.exports = app;