1
1
mirror of https://github.com/aelve/guide.git synced 2024-12-23 21:02:13 +03:00
guide/start.sh

9 lines
178 B
Bash
Executable File

#!/bin/bash
tmux new-session -d -s guide
tmux send-keys 'stack exec guide' 'C-m'
tmux split-window -h
tmux send-keys 'cd front && npm start' 'C-m'
tmux attach-session -t guide