From f16860dd0939713d53282eaf9bdf2068f907aaff Mon Sep 17 00:00:00 2001 From: Bill Thiede Date: Thu, 9 Mar 2023 18:04:36 -0800 Subject: [PATCH] Update watch paths. --- dev.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dev.sh b/dev.sh index 35cb854..d655032 100755 --- a/dev.sh +++ b/dev.sh @@ -1,6 +1,6 @@ tmux new-session -d -s letterbox-dev tmux rename-window web -tmux send-keys "cd web; trunk serve --release --address 0.0.0.0 --port 6758 --proxy-backend http://localhost:9345/ --proxy-rewrite=/api/" C-m +tmux send-keys "cd web; trunk serve --release --address 0.0.0.0 --port 6758 --proxy-backend http://localhost:9345/ --proxy-rewrite=/api/ -w ../shared -w ../notmuch -w ./" C-m tmux new-window -n server -tmux send-keys "cd server; cargo watch -x run" C-m +tmux send-keys "cd server; cargo watch -x run -w ../shared -w ../notmuch -w ./" C-m tmux attach -d -t letterbox-dev