prepare for deploy
# Conflicts: # package.json # server.js
This commit is contained in:
@@ -1,6 +1,5 @@
|
||||
const express = require('express');
|
||||
const connectDB= require('./config/db')
|
||||
|
||||
const path = require('path')
|
||||
const app = express();
|
||||
|
||||
@@ -13,17 +12,13 @@ app.use('/api/users', require('./routers/api/users'))
|
||||
app.use('/api/auth', require('./routers/api/auth'))
|
||||
app.use('/api/profile', require('./routers/api/profile'))
|
||||
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;
|
||||
|
||||
app.listen(PORT,()=> console.log(`Server started on port ${PORT}`));
|
||||
|
||||
@@ -0,0 +1,14 @@
|
||||
#!/bin/bash
|
||||
|
||||
# systemctl start mongodb.service
|
||||
|
||||
sn=devCon
|
||||
cd ~/devConnectTS/
|
||||
tmux new-session -s "$sn" -n etc -d "nvim .; exec zsh"
|
||||
cd ~/devConnectTS/client
|
||||
tmux new-window -t "$sn:2" -n "client" "npm run dev"
|
||||
cd ~/devConnectTS/server
|
||||
tmux new-window -t "$sn:3" -n "server" "npm run server"
|
||||
|
||||
tmux select-window -t "$sn:1"
|
||||
tmux -2 attach-session -t "$sn"
|
||||
Reference in New Issue
Block a user