18 lines
692 B
Bash
Executable File
18 lines
692 B
Bash
Executable File
# firefox https://bigdrumdigital.teamwork.com/app/projects/620980/time &
|
|
# firefox https://3.basecamp.com/5456546/buckets/36188668/card_tables/7047790073 &
|
|
# mongodb-compass &
|
|
|
|
tmux new-session -s linkedag -d -c ~/repos/linkedag-backend -n backend
|
|
tmux split-window -h -c ~/repos/linkedag-backend
|
|
tmux send-keys -t linkedag:backend.0 'nvim' C-m
|
|
tmux send-keys -t linkedag:backend.1 'npm run dev' C-m
|
|
|
|
tmux new-window -c ~/repos/linkedag -n frontend
|
|
tmux split-window -h -c ~/repos/linkedag
|
|
tmux send-keys -t linkedag:frontend.0 'nvim' C-m
|
|
tmux send-keys -t linkedag:frontend.1 'npm run dev' C-m
|
|
|
|
tmux select-window -t linkedag:backend
|
|
tmux select-pane -t 0
|
|
tmux -2 attach-session -t linkedag
|