-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathserver.js
More file actions
58 lines (50 loc) · 1.58 KB
/
Copy pathserver.js
File metadata and controls
58 lines (50 loc) · 1.58 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
const express = require('express');
const session = require('express-session');
const exphbs = require('express-handlebars');
const routes = require('./controllers');
const path = require('path');
const helpers = require('./helpers/helpers.js');
const sequelize = require('./config/connection');
const SequelizeStore = require('connect-session-sequelize')(session.Store);
const hbs = exphbs.create({ extname: '.hbs', helpers });
// We use a select helper to set the selected option from the database for certain
// drop down menus in our application
hbs.handlebars.registerHelper('select', function (selected, options) {
return options
.fn(this)
.replace(
new RegExp(' value="' + selected + '"'),
'$& selected="selected"'
);
});
const app = express();
const PORT = process.env.PORT || 3001;
// Session configuration
const sess = {
secret: 'S7NAGufWAThLXMqg',
cookie: {
maxAge: 24 * 60 * 60 * 1000,
httpOnly: true,
secure: false,
sameSite: 'strict',
},
resave: false,
saveUninitialized: true,
store: new SequelizeStore({
db: sequelize,
}),
};
app.engine('.hbs', hbs.engine);
app.set('view engine', '.hbs');
// Middleware configuration
app.use(session(sess));
app.use(express.json());
app.use(express.urlencoded({ extended: true }));
app.use(express.static(path.join(__dirname, 'public')));
// Implement our custom routes
app.use(routes);
sequelize.sync({ force: false }).then(() => {
app.listen(PORT, () =>
console.log(`Now listening on http://localhost:${PORT}`)
);
});