forked from barrantesc/The-Sheet-Show
-
Notifications
You must be signed in to change notification settings - Fork 1
/
server.js
79 lines (51 loc) · 2.07 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
//-- access to stylesheet within express app
const path = require('path');
//-- Express
const express = require('express');
const routes = require('./controllers/');
const sequelize = require('./config/connection');
const app = express();
const PORT = process.env.PORT || 3001;
//-- Feeding Express server info it needs to be used
app.use(express.json());
app.use(express.urlencoded({ extended: true }));
//-- this MUST be above routes
app.use(express.static(path.join(__dirname, 'public')));
//-- Defining APP template engine - Using Handelbars
const exphbs = require('express-handlebars');
const helpers = require('./utils/helpers'); //-- importing helpers
const hbs = exphbs.create({helpers}); //-- creating with helpers
app.engine('handlebars', hbs.engine);
app.set('view engine', 'handlebars');
//------------------------------------------------------------------------------
//-- Express Session and Connection-Session Sequelize onboarding
const session = require('express-session');
const SequelizeStore = require('connect-session-sequelize')(session.Store);
const sess = {
secret: process.env.SESS_SECRET,
cookie: {},
resave: false,
saveUninitialized: true,
store: new SequelizeStore({
db: sequelize
})
};
app.use(session(sess));
//------------------------------------------------------------------------------
// turn on routes
app.use(routes);
//------------------------------------------------------------------------------
//-- Create Database Connection
// turn on connection to db and server
/*
- { force: true } == database connection must sync with the model definitions and
associations.
- By forcing the sync method to true, we will make the tables re-create if
there are any association changes.
*/
//-- use xisting tables if exist, start connection to express and SQL
sequelize.sync({ force: false }).then(() => {
//-- Overvwrite existing tables if exist, start connection to express and SQL
// sequelize.sync({ force: true }).then(() => {
app.listen(PORT, () => console.log(`Now listening on http://127.0.0.1:${PORT}`));
});