-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathserver.js
45 lines (35 loc) · 1.2 KB
/
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
36
37
38
39
40
41
42
43
44
45
const express=require('express');
var cors=require('cors');
const app=express();
const PORT = process.env.PORT||5000 ;
const mongoose=require('mongoose');
const {MONGOURL} = require("./config/keys");
mongoose.connect(process.env.MONGODB_URI ||
"mongodb+srv://sristi:[email protected]/<dbname>?retryWrites=true&w=majority",
{
useNewUrlParser:true,
useUnifiedTopology:true,
useFindAndModify:false
},err=>
{
if(!err) console.log("Database Connected");
else console.log("err")
})
require("./models/user");
require("./models/post");
app.use(cors());
app.use(express.json());
app.use(require("./routes/auth"));
app.use(require("./routes/posts"));
app.use(require("./routes/users"));
if(process.env.NODE_ENV=="production")
{
app.use(express.static('client/build'));
const path=require('path') //path module
app.get("*",(req,res)=>
{
res.sendFile(path.resolve(__dirname,'client','build','index.html')) //static file
//if client will be making any req,then index.html will be sent for all cases.Index.html has all the react code
})
}
app.listen(PORT,()=>console.log('server is running on port',PORT))