-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
50 lines (44 loc) · 1.5 KB
/
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
45
46
47
48
49
50
const express = require('express')
const mongoose = require('mongoose')
const exphbs = require('express-handlebars')
const path = require('path')
// подключаем роуты
const todoRoutes = require('./routes/todos')
// если есть системная переменная с портом
const PORT = process.env.PORT || 3000
const app = express()
const uri =
'mongodb+srv://fnaticshy:123456qwe@cluster-fns-ropdc.mongodb.net/todos'
const hbs = exphbs.create({
defaultLayout: 'main',
extname: 'hbs',
})
// передаем шаблонизатор в движок
app.engine('hbs', hbs.engine)
// по умолчанию будем использовать handlebars
app.set('view engine', 'hbs')
// регистрируем папку c шаблонами
app.set('views', 'views')
// создаем статический путь
app.use(express.static(path.join(__dirname, 'public')))
// добавляем возможность считывать body из запросов
app.use(express.urlencoded({ extended: true }))
// добавляем роуты
app.use(todoRoutes)
async function start() {
try {
// конектимся к базе
await mongoose.connect(uri, {
useNewUrlParser: true,
useFindAndModify: false,
})
// запускаем зервер
// если сервер запущен, вызываем колбек
app.listen(PORT, () => {
console.log('Server has been started...')
})
} catch (error) {
console.log(error)
}
}
start()