prepare for prod

This commit is contained in:
QkoSad
2023-06-07 10:54:19 +03:00
parent 703784307a
commit d9b63e9533
2 changed files with 4 additions and 1 deletions
+2 -1
View File
@@ -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\"",
"render": "NPM_CONFIG_PRODUCTION=false npm install --prefix client && npm run build --prefix client"
}, },
"author": "", "author": "",
"license": "ISC", "license": "ISC",
+2
View File
@@ -15,6 +15,7 @@ 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 // Serve static assets in production
if (process.env.NODE_ENV==='production'){ if (process.env.NODE_ENV==='production'){
app.use(express.static('client/build')); app.use(express.static('client/build'));
app.get('*',(req, res)=>[ app.get('*',(req, res)=>[
@@ -22,6 +23,7 @@ if (process.env.NODE_ENV==='production'){
]) ])
} }
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}`));