-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathserver.js
56 lines (49 loc) · 1.49 KB
/
server.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
// Requiring necessary npm packages
const express = require("express");
const session = require("express-session");
const exphbs = require("express-handlebars");
// Requiring passport as we've configured it
const passport = require("./config/passport");
// Setting up port and requiring models for syncing
const PORT = process.env.PORT || 8080;
const db = require("./models");
// Creating express app and configuring middleware needed for authentication
const app = express(),
path = require("path"),
compression = require("compression");
app.use(express.urlencoded({ extended: true }));
app.use(express.json());
app.use(compression());
// app.use(express.static(__dirname + "/public"));
process.env.PWD = process.cwd();
app.use(express.static(path.join(process.env.PWD, "/public/")));
// We need to use sessions to keep track of our user's login status
app.use(
session({
secret: "keyboard cat",
resave: true,
saveUninitialized: true
})
);
app.use(passport.initialize());
app.use(passport.session());
app.engine(
"handlebars",
exphbs({
defaultLayout: "main"
})
);
app.set("view engine", "handlebars");
require("./routes/user-api-routes.js")(app);
const router = require("./controllers/controller.js");
app.use(router);
// Syncing our database and logging a message to the user upon success
db.sequelize.sync().then(() => {
app.listen(PORT, () => {
console.log(
"==> 🌎 Listening on port %s. Visit http://localhost:%s/ in your browser.",
PORT,
PORT
);
});
});