-
Notifications
You must be signed in to change notification settings - Fork 0
/
server.js
57 lines (43 loc) · 1.63 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
const express = require("express");
const path = require("path");
const session = require("express-session");
const exphbs = require("express-handlebars");
const routes = require("./controllers");
const helpers = require("./utils/helpers");
const { clog } = require("./middleware/clog");
const tone = require('./controllers/tone')
const cheerio = require("cheerio");
const sequelize = require("./config/connection");
const SequelizeStore = require("connect-session-sequelize")(session.Store);
const app = express();
const PORT = process.env.PORT || 3001;
const hbs = exphbs.create({ helpers });
const sess = {
secret: "Super secret secret",
cookie: {
// Stored in milliseconds (86,400,000 === 1 day)
maxAge: 86400000,
// httpOnly tells express-session to only store session cookies when the protocol being used to connect to the server is HTTP.
httpOnly: true,
// secure tells express-session to only initialize session cookies when the protocol being used is HTTPS. Having this set to true, and running a server without encryption will result in the cookies not showing up in your developer console.
secure: false,
},
resave: false,
saveUninitialized: true,
store: new SequelizeStore({
db: sequelize,
}),
};
app.use(clog);
app.use(session(sess));
app.engine("handlebars", hbs.engine);
app.set("view engine", "handlebars");
app.use(express.json());
app.use(express.urlencoded({ extended: true }));
app.use(express.static(path.join(__dirname, "public")));
app.use(routes);
sequelize.sync({ force: false }).then(() => {
app.listen(PORT, () =>
console.log(`App listening at http://localhost:${PORT} 🚀`)
);
});