prepare for deploy

# Conflicts:
#	package.json
#	server.js
This commit is contained in:
QkoSad
2022-11-07 18:08:36 +02:00
parent b4f0744219
commit b1caf7eb88
2 changed files with 14 additions and 5 deletions
+14
View File
@@ -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"