-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
36 lines (26 loc) · 918 Bytes
/
index.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
const express = require('express');
const exphbs = require('express-handlebars');
const body = require('body-parser');
const path = require('path');
// db context
const db = require('./config/database');
const bodyParser = require('body-parser');
//testing db
db.authenticate()
.then(() => console.log('Connected'))
.catch(err => console.log(err))
const app = express();
// handlebars
app.engine('handlebars', exphbs.engine( {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(`Server started on port ${PORT}`));
module.exports = app;