-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathserver.js
More file actions
53 lines (44 loc) · 1.55 KB
/
server.js
File metadata and controls
53 lines (44 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
const express = require("express");
const app = express();
const PORT = process.env.PORT || 3001;
const colors = require("colors");
const mongoose = require("mongoose");
const routes = require("./routes");
const session = require("express-session");
const passport = require("passport");
const logger = require("morgan");
const flash = require('connect-flash');
require("dotenv").config()
app.use(express.urlencoded({ extended: true }));
app.use(express.json());
app.use(logger("dev"));
app.use(flash())
app.use(express.static("public"));
app.use(session({
secret: "keyboard cat",
resave: false,
saveUninitialized: true,
// cookie: { secure: true }
}));
app.use(passport.initialize());
app.use(passport.session());
if (process.env.NODE_ENV === "production") {
app.use(express.static("client/build"));
}
app.use(routes);
mongoose.connect(process.env.MONGODB_URI || "mongodb://meetinthemiddle:meetinthemiddle123@ds123603.mlab.com:23603/heroku_9344qp75" , { useNewUrlParser: true }, function(err) {
if (err) throw err;
console.log(`mongoose connection successful`.yellow);
app.listen(PORT, (err)=> {
if (err) throw err;
console.log(`connected on port ${PORT}`.cyan)
});
});
// mongoose.connect(process.env.MONGODB_URI || "mongodb://localhost/meetInTheMiddle" , { useNewUrlParser: true }, function(err) {
// if (err) throw err;
// console.log(`mongoose connection successful`.yellow);
// app.listen(PORT, (err)=> {
// if (err) throw err;
// console.log(`connected on port ${PORT}`.cyan)
// });
// });