-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.js
46 lines (36 loc) · 1.11 KB
/
index.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
const express = require("express");
const namespace = require("express-namespace");
const mongoose = require("mongoose");
const cookieSession = require("cookie-session");
const passport = require("passport");
const keys = require("./config/keys");
require("./models/user");
require("./models/listing");
require("./services/passport");
const bodyParser = require("body-parser");
const busboy = require("connect-busboy");
const busboyBodyParser = require("busboy-body-parser");
mongoose.connect(keys.mongoURI);
const app = express();
// Google Oauth
app.use(express.static("public"));
app.use(express.static("public/stylesheets"));
app.use(
cookieSession({
maxAge: 30 * 24 * 60 * 60 * 1000,
keys: [keys.cookieKey],
})
);
app.use(passport.initialize());
app.use(passport.session());
// Image upload
app.use(busboy());
app.use(bodyParser.urlencoded({ extended: true }));
app.use(bodyParser.json());
app.use(busboyBodyParser());
// routes
require("./routes/routes")(app);
// middleware
// this is the port that heroku will listen on, if none exists, 5000 will take over
const PORT = process.env.PORT || 5000;
app.listen(PORT);