-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathapp.js
More file actions
36 lines (26 loc) · 1.04 KB
/
app.js
File metadata and controls
36 lines (26 loc) · 1.04 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
const express = require('express');
const exphbs = require('express-handlebars');
const bodyParser = require('body-parser');
const path = require('path');
const db = require('./config/database');
//do not allow insecure access not a safe option
// const {allowInsecurePrototypeAccess} = require('@handlebars/allow-prototype-access');
// const insecureHandlebars = allowInsecurePrototypeAccess(exphbs);
//test db
db.authenticate()
.then(() => console.log('Database connected... '))
.catch(err => console.log('Error' + err));
const app = express();
//handlebars
app.engine('handlebars', exphbs({ defaultLayout: 'main' }));
app.set('view engine', 'handlebars');
//body parser
app.use(bodyParser.urlencoded({ extended: false }));
//set static folder
app.use(express.static(path.join(__dirname, 'public')));
//index route
app.get('/', (req, res) => res.render('index', { layout: 'landing' }));
//gig routes
app.use('/gigs', require('./routes/gigs'));
const PORT = process.env.PORT || 5000;
app.listen(PORT, console.log(`listening on the port ${PORT}`));