-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathapp.js
executable file
·80 lines (64 loc) · 2.6 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
require('dotenv').config();
var express = require('express');
var path = require('path');
var favicon = require('serve-favicon');
var logger = require('morgan');
var cookieParser = require('cookie-parser');
var bodyParser = require('body-parser');
var Papa = require('papaparse');
// Added lines for session, passport, and connect-flash
// var session = require('express-session');
// var passport = require('./config/ppConfig');
// var flash = require('connect-flash');
// Mongoose stuff
var mongoose = require('mongoose');
// mongoose.connect('mongodb://localhost/mern-local-auth');
// mongoose.connect('mongodb://localhost/rainyDay');
mongoose.connect(process.env.MONGODB_URI, {useMongoClient: true}); //USE THIS WHEN DEPLOYING
var BankRecord = require('./models/bankRecord');
var User = require('./models/user');
// var index = require('./routes/index');
var users = require('./routes/users');
var auth = require('./routes/auth');
var bankRecords = require('./routes/bankRecords');
var app = express();
// view engine setup - commented out
// app.set('views', path.join(__dirname, 'views'));
// app.set('view engine', 'jade');
// uncomment after placing your favicon in /public
//app.use(favicon(path.join(__dirname, 'public', 'favicon.ico')));
app.use(logger('dev'));
app.use(bodyParser.json());
app.use(bodyParser.urlencoded({ extended: false }));
app.use(cookieParser());
// app.use(express.static(path.join(__dirname, 'public')));
app.use(express.static(path.resolve(__dirname, 'client', 'build')));
/* Configure the express-session...
* [secret]: A string used to "sign" the session ID cookie, which makes it unique
* from application to application. We'll hide this in the environment
* [resave]: Save the session even if it wasn't modified. We'll set this to false
* [saveUninitialized]: If a session is new, but hasn't been changed, save it.
* We'll set this to true.
*/
// app.use(session({
// secret: process.env.SESSION_SECRET,
// resave: false,
// saveUninitialized: true
// }));
// Add the flash module in
// app.use(flash());
app.use(function(req, res, next) {
// before every route, attach the flash messages and current user to res.locals
// res.locals.alerts = req.flash();
res.locals.currentUser = req.user;
next();
});
// initialize the passport configuration and session as middleware
// app.use(passport.initialize());
// app.use(passport.session());
// app.use('/', index);
// app.use('/users', users);
app.use('/auth', auth);
app.use('/bankRecords', bankRecords);
app.get('*', function(req, res, next) {res.sendFile(path.resolve(__dirname, 'client', 'build', 'index.html'));});
module.exports = app;