-
Notifications
You must be signed in to change notification settings - Fork 4
/
server.js
60 lines (51 loc) · 1.75 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
57
58
59
60
// Requiring necessary npm packages
const express = require("express");
const session = require("express-session");
const handlebars = require("express-handlebars");
// Requiring passport as we've configured it
const passport = require("./config/passport");
// Allows env variables in development on local machines. Uses .ENV in the root directory
if (process.env.NODE_ENV !== "production") {
require("dotenv").config();
}
// 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();
app.use(express.urlencoded({ extended: true }));
app.use(express.json());
app.use(express.static("public"));
// We need to use sessions to keep track of our user's login status
app.use(
session({
secret: process.env.SESSION_SECRET,
resave: true,
saveUninitialized: true
})
);
// Initializes passport
app.use(passport.initialize());
app.use(passport.session());
// Initializes handlebars
app.engine("handlebars", handlebars({ defaultlayout: "main" }));
app.set("view engine", "handlebars");
// Requiring our routes
require("./routes/api-routes.js")(app);
require("./routes/html-routes.js")(app);
// Loading the ETSY class and the articles class
const Products = require("./config/etsyAPI.js");
const Articles = require("./config/newsApi.js");
// Syncing our database and logging a message to the user upon success
db.sequelize.sync().then(() => {
// Seeding the products and articles database
new Products(db.products);
new Articles(db.articles);
app.listen(PORT, () => {
console.log(
"==> 🌎 Listening on port %s. Visit http://localhost:%s/ in your browser.",
PORT,
PORT
);
});
});