-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathserver.js
More file actions
65 lines (53 loc) · 1.97 KB
/
server.js
File metadata and controls
65 lines (53 loc) · 1.97 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
// Requiring necessary npm packages
const express = require("express");
const session = require("express-session");
const exphbs = require("express-handlebars");
const passport = require("./config/passport");
const Handlebars = require('handlebars');
// Import function exported by newly installed node modules.
// Setting up port and requiring models for syncing
const PORT = process.env.PORT || 3000;
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());
// Serve static content for the app from the "public" directory in the application directory.
app.use(express.static("public"));
//set handlebars
app.engine("handlebars", exphbs({ defaultLayout: "main" }));
app.set("view engine", "handlebars");
// We need to use sessions to keep track of our user's login status
// check passport.js for explanation of sessions
app.use(
session({ secret: "keyboard cat", resave: true, saveUninitialized: true })
);
app.use(passport.initialize());
app.use(passport.session());
//importing routes
require("./routes/html-routes.js")(app);
require("./routes/api-routes.js")(app);
app.use(
session({ secret: "keyboard cat", resave: true, saveUninitialized: true })
);
// Syncing our database and logging a message to the user upon success
// --------- //
//A model can be synchronized with the database by calling model.sync(options), an asynchronous function (that returns a Promise).
//With this call, Sequelize will automatically perform an SQL query to the database.
//This creates the table if it doesn't exist (and does nothing if it already exists)
db.sequelize
.sync()
.then(() => {
app.listen(PORT, () => {
// console.log(db)
console.log(
"==> 🌎 Listening on port %s. Visit http://localhost:%s/ in your browser.",
PORT,
PORT
);
});
})
.catch(err => {
console.log(err);
throw err;
});