Update port number

Prevents collisions with other running projects, such as my personal
website that uses Sculpin and also port 8000 by default.
This commit is contained in:
Oliver Davies 2024-01-15 08:00:00 +00:00
parent 75b17fd565
commit ea2c228806
2 changed files with 2 additions and 2 deletions

2
.tmux
View file

@ -18,7 +18,7 @@ tmux new-session -d -s "${session_name}" -n vim -c "${session_path}"
# 1. Main window: Vim, server, shell
tmux send-keys -t "${session_name}:vim" "nvim +GoToFile" Enter
tmux split-pane -t "${session_name}:vim" -h -c "${session_path}" -p 40
tmux send-keys -t "${session_name}:vim.right" "php -S 0.0.0.0:8000 -t web" Enter
tmux send-keys -t "${session_name}:vim.right" "php -S 0.0.0.0:9000 -t web" Enter
# 2. General shell use.
tmux new-window -t "${session_name}" -c "${session_path}"