-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathserver.js
35 lines (27 loc) · 977 Bytes
/
server.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
const express = require('express')
const path = require('path')
const config = require('./config/config')
const mongoose = require('mongoose')
const userRoutes = require('./routes/userRoutes');
const { db: { host, port, name } } = config
const connectionString = `mongodb://${host}:${port}/${name}`
const app = express()
//Configuring Express
app.use(express.json())
app.use(express.urlencoded({ extended: true }))
app.use(express.static(path.join(__dirname, 'public')))
//Configure MongoDB Database
mongoose.connect(connectionString, { useNewUrlParser: true, useUnifiedTopology: true })
.then(response => {
console.log('MongoDB Database Running Successfully')
})
.catch(err => {
console.log('MongoDB Database Connection Failed')
});
app.get('/api/v1', (req, res) => {
res.send('Noddy Authentication System')
})
app.use('/api/v1/', userRoutes);
app.listen(config.app.port, (req, res) => {
console.log(`Server Is Live At Port ` + config.app.port)
})