-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.js
39 lines (28 loc) · 839 Bytes
/
app.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
const express = require('express')
const mongoose = require('mongoose')
const morgan = require('morgan')
const cors = require('cors')
const { verifyCredentials } = require('./src/utils/verify')
require('dotenv').config()
const app = express()
app.use(express.json())
app.use(express.urlencoded( { extended: true } ))
app.use(morgan('dev'))
app.use(cors())
app.use((req, res, next) => {
if (req.path === '/user/login') {
return next()
}
verifyCredentials(req, res, next)
})
app.use('/user', require('./src/routes/user'))
app.get('/', (req, res) => {
res.send('<h1>403</h1>')
})
mongoose.connect(process.env.URL_CONECTION_MONGO, (error) => {
if (error) throw new error
console.log('MongoDB contectado')
})
app.listen(process.env.PORT, () => {
console.log(`Servidor corriendo en el puerto ${process.env.PORT}`)
})