-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
44 lines (33 loc) · 1012 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
37
38
39
40
41
42
43
44
const express = require('express')
const mongoose = require('mongoose')
const path = require('path')
const exphbs = require('express-handlebars')
const todoRoutes = require('./routes/todos')
const port = process.env.PORT || 3000;
const app = express()
const hbs = exphbs.create({
defaultLayout: 'main',
extname: 'hbs'
})
app.engine('hbs', hbs.engine)
app.set('view engine', 'hbs')
app.set('views', 'views')
app.use(express.urlencoded({extended: true}))
app.use(express.static(path.join(__dirname, 'public')))
app.use(todoRoutes)
// Launching a Server
async function start() {
try {
await mongoose.connect('mongodb+srv://iosmonbekov:123@cluster0.o5esa.mongodb.net/todos', {
useNewUrlParser: true,
useFindAndModify: false,
useUnifiedTopology: true,
})
app.listen(port, () => {
console.log(`Server has been started at PORT:${port}...`)
})
} catch (error) {
console.log(error)
}
}
start();