-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathserver.js
52 lines (42 loc) · 1.52 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
const path = require('path');
const express = require('express');
const session = require('express-session');
const exphbs = require('express-handlebars');
require('dotenv').config();
const SESS_SECRET = process.env.SESS_SECRET;
// session timeout when idle = minutes * seconds/min * 1 second
const SESS_TIMEOUT = 60 * 60 * 1000;
const app = express();
const PORT = process.env.PORT || 3002;
const sequelize = require("./config/connection");
const SequelizeStore = require('connect-session-sequelize')(session.Store);
const sess = {
secret: SESS_SECRET,
cookie: {
maxAge: SESS_TIMEOUT
},
rolling: true,
resave: false,
saveUninitialized: true,
store: new SequelizeStore({
db: sequelize
})
};
app.use(session(sess));
const helpers = require('./utils/helpers');
const hbs = exphbs.create({ helpers });
app.engine('handlebars', hbs.engine);
app.set('view engine', 'handlebars');
app.use(express.json());
app.use(express.urlencoded({ extended: false }));
app.use(express.static(path.join(__dirname, 'public')));
app.use(require('./controllers/'));
// WHEN DATABASE CHANGES
// use mySql to rebuild schema: "source ./db/schema.sql
// set force:true HERE
// start the server - this rebuilds our tables - and then quit
// set force: false (IMPORTANT!) - now the database is good but all data is gone
// reseed the database as desired. You can do this in mySQL with "source ./db/seeds.sql"
sequelize.sync({ force: false }).then(() => {
app.listen(PORT, () => console.log(`Server listening on: http://localhost:${PORT}`));
});