mirror of
https://github.com/penpot/penpot.git
synced 2026-05-22 00:13:41 +00:00
- Migrate to from ubuntu to debian. - Add new buildenv image. - Remove production images building from this repo. - Better comaptibility with other architectures (arm64). - Improved config management.
21 lines
617 B
Bash
Executable File
21 lines
617 B
Bash
Executable File
#!/usr/bin/env zsh
|
|
|
|
tmux -2 new-session -d -s uxbox
|
|
|
|
tmux new-window -t uxbox:1 -n 'figwheel'
|
|
tmux select-window -t uxbox:1
|
|
tmux send-keys -t uxbox 'cd uxbox/frontend' enter C-l
|
|
tmux send-keys -t uxbox 'clojure -Adev tools.clj figwheel' enter
|
|
|
|
tmux new-window -t uxbox:2 -n 'backend'
|
|
tmux select-window -t uxbox:2
|
|
tmux send-keys -t uxbox 'cd uxbox/backend' enter C-l
|
|
tmux send-keys -t uxbox './bin/start-dev' enter
|
|
|
|
tmux rename-window -t uxbox:0 'gulp'
|
|
tmux select-window -t uxbox:0
|
|
tmux send-keys -t uxbox 'cd uxbox/frontend' enter C-l
|
|
tmux send-keys -t uxbox 'npx gulp watch' enter
|
|
|
|
tmux -2 attach-session -t uxbox
|