-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.js
41 lines (33 loc) · 1.01 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
const express = require("express");
const app = express();
const PORT = process.env.PORT || 5000;
const mongoose = require("mongoose");
const {MONGOURI} = require("./config/keys");
require('./models/user');
require("./models/post");
//mongoDB atlas password
mongoose.connect(MONGOURI, {useNewUrlParser:true, useUnifiedTopology:true})
mongoose.connection.on('connected',()=>{
console.log("connected to mongo");
})
mongoose.connection.on('error',()=>{
console.log("error occurred in mongo connection");
})
app.use(express.json());
app.use(require("./routes/auth"));
app.use(require("./routes/post"));
app.use(require("./routes/user"));
if(process.env.NODE_ENV == "production"){
app.use(express.static("client/build"))
const path = require("path");
app.get('/*', function(req, res) {
res.sendFile(path.join(__dirname, 'client',"build", 'index.html'));
});
}
app.get("/", (req,res)=>{
console.log('home')
res.send("Hello world!")
})
app.listen(PORT,()=>{
console.log(`server is running on ${PORT}`)
})