feat: with dev environment

Signed-off-by: kjuulh <contact@kjuulh.io>
This commit is contained in:
2023-06-04 12:58:23 +02:00
parent 337642c35f
commit c3b45d9eb6
10 changed files with 569 additions and 14 deletions

20
scripts/dev.sh Executable file
View File

@@ -0,0 +1,20 @@
#!/bin/bash
tmux new-session -d -s dev
# allow for user input
tmux split-window -h
# leptos
tmux send-keys -t dev "cuddle_cli x leptos:dev" C-m
tmux split-window -v
# tailwind
tmux send-keys -t dev "cuddle_cli x tailwind:watch" C-m
# set user input to first
tmux select-pane -t 0
tmux attach-session -t dev