-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.js
40 lines (32 loc) · 1.06 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
const express = require('express')
const app = express()
const PORT = process.env.PORT || 5000
const mongoose = require('mongoose')
const {MONGOURI} = require('./config/keys')
//6VxsQWfUuLqwxmSx
mongoose.connect(MONGOURI,{
useNewUrlParser: true,
useUnifiedTopology: true
})
mongoose.connection.on('connected', ()=>{
console.log("connected to mongo yeahh")
})
mongoose.connection.on('error', ()=>{
console.log("err connecting", err)
})
require("./models/user")
require("./models/post")
app.use(express.json()) //pass incoming request and pass it as json
app.use(require('./routes/auth')) //registering routes
app.use(require('./routes/post'))
app.use(require('./routes/user'))
if(process.env.NODE_ENV=="production"){ //for node to get static js and css file to get while production/deployment
app.use(express.static('client/build'))
const path = require('path')
app.get("*", (req, res)=>{
res.sendFile(path.resolve(__dirname,'client','build','index.html'))
})
}
app.listen(PORT, ()=>{
console.log('server is running on',PORT)
})