-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.js
62 lines (42 loc) · 1.4 KB
/
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
const express = require('express')
const app = express()
const mongoose = require('mongoose')
const PORT = process.env.PORT || 5000
const { MONGOURI } = require('./config/keys')
const path = require('path')
// connecting to the database with mongoose
mongoose.connect(MONGOURI, {
useNewUrlParser: true,
useUnifiedTopology: true
})
mongoose.connection.on('connected', () => console.log('connected to the database'))
mongoose.connection.on('error', (err) => console.log('error connecting', err))
// GETTING THE MODEL FROM THE FILE
require('./models/user')
require('./models/post')
require('./models/complain')
require('./models/announcement')
// MAKE SURE YOU USE THIS BEFORE THE ROUTES
app.use(express.json())
// GETTING THE ROUTER FROM THE ROUTES FOLDER
app.use(require('./routes/auth'))
app.use(require('./routes/post'))
// declaring the middleware
// const customMiddleware = (req, res, next) => {
// console.log("middleware executed")
// next()
// }
// using the middleware
// app.use(customMiddleware)
// SETTING THE ROUTES
app.get('/', (req, res) => {
res.send("hello world")
})
if (process.env.NODE_ENV === 'production') {
app.use(express.static('client/build'))
app.get('*', (req, res) => {
res.sendFile(path.join(__dirname, 'client', 'build', 'index.html'))
// path.resolve
})
}
app.listen(PORT, () => (console.log('server is up and running on', PORT)))