prepare for deploy
This commit is contained in:
+2
-1
@@ -7,7 +7,8 @@
|
|||||||
"start": "node server",
|
"start": "node server",
|
||||||
"server": "nodemon server",
|
"server": "nodemon server",
|
||||||
"client": "npm start --prefix client --trace-depracation",
|
"client": "npm start --prefix client --trace-depracation",
|
||||||
"dev": "concurrently \"npm run server\" \"npm run client\""
|
"dev": "concurrently \"npm run server\" \"npm run client\"",
|
||||||
|
"heroku-postbuild":"NPM_CONFIG_PRODUCTION=false npm install --prefix client && npm run build --prefix client"
|
||||||
},
|
},
|
||||||
"author": "",
|
"author": "",
|
||||||
"license": "ISC",
|
"license": "ISC",
|
||||||
|
|||||||
@@ -1,16 +1,23 @@
|
|||||||
const express = require('express');
|
const express = require('express');
|
||||||
const connectDB= require('./config/db')
|
const connectDB= require('./config/db')
|
||||||
|
const path = require('path')
|
||||||
const app = express();
|
const app = express();
|
||||||
|
|
||||||
connectDB();
|
connectDB();
|
||||||
|
|
||||||
app.use(express.json({extended:false}));
|
app.use(express.json({extended:false}));
|
||||||
app.get('/',(req,res)=> res.send('API Running'));
|
|
||||||
|
|
||||||
app.use('/api/users', require('./routers/api/users'))
|
app.use('/api/users', require('./routers/api/users'))
|
||||||
app.use('/api/auth', require('./routers/api/auth'))
|
app.use('/api/auth', require('./routers/api/auth'))
|
||||||
app.use('/api/profile', require('./routers/api/profile'))
|
app.use('/api/profile', require('./routers/api/profile'))
|
||||||
app.use('/api/posts', require('./routers/api/posts'))
|
app.use('/api/posts', require('./routers/api/posts'))
|
||||||
|
// Serve static assets in production
|
||||||
|
if (process.env.NODE_ENV==='production'){
|
||||||
|
app.use(express.static('client/build'));
|
||||||
|
app.get('*',(req, res)=>[
|
||||||
|
res.sendFile(path.resolve(__dirname, 'client', 'build','index.html'))
|
||||||
|
])
|
||||||
|
}
|
||||||
const PORT = process.env.PORT || 5000;
|
const PORT = process.env.PORT || 5000;
|
||||||
|
|
||||||
app.listen(PORT,()=> console.log(`Server started on port ${PORT}`));
|
app.listen(PORT,()=> console.log(`Server started on port ${PORT}`));
|
||||||
Reference in New Issue
Block a user