feat: add bb attach task for attaching to dev tmux session

This commit is contained in:
Florian Schroedl
2026-04-18 16:13:14 +02:00
parent 59f9cacdb0
commit 267d52e4ce

3
bb.edn
View File

@@ -30,6 +30,9 @@
(println " Server: http://localhost:8090/sync") (println " Server: http://localhost:8090/sync")
(println " Attach: tmux attach -t atomsync-dev"))} (println " Attach: tmux attach -t atomsync-dev"))}
attach {:doc "Attach to the dev tmux session"
:task (shell "tmux attach -t atomsync-dev")}
dev:stop {:doc "Stop the dev tmux session" dev:stop {:doc "Stop the dev tmux session"
:task (shell "tmux kill-session -t atomsync-dev")} :task (shell "tmux kill-session -t atomsync-dev")}