2020-09-07 06:38:17 -05:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
|
|
|
cd ~;
|
2016-11-20 14:08:24 -05:00
|
|
|
|
2020-03-02 10:18:39 -05:00
|
|
|
set -e;
|
2020-09-07 06:38:17 -05:00
|
|
|
source ~/.bashrc
|
2020-03-02 10:18:39 -05:00
|
|
|
|
|
|
|
echo "[start-tmux.sh] Installing node dependencies"
|
2020-11-10 06:41:20 -05:00
|
|
|
pushd ~/penpot/frontend/
|
2020-07-03 08:41:00 -05:00
|
|
|
yarn install
|
2020-03-02 10:18:39 -05:00
|
|
|
popd
|
2020-11-10 06:41:20 -05:00
|
|
|
pushd ~/penpot/exporter/
|
2020-07-03 08:41:00 -05:00
|
|
|
yarn install
|
2020-07-01 03:38:18 -05:00
|
|
|
popd
|
2020-03-02 10:18:39 -05:00
|
|
|
|
2020-11-10 06:41:20 -05:00
|
|
|
tmux -2 new-session -d -s penpot
|
2016-11-20 14:08:24 -05:00
|
|
|
|
2020-11-10 06:41:20 -05:00
|
|
|
tmux new-window -t penpot:1 -n 'shadow watch'
|
|
|
|
tmux select-window -t penpot:1
|
|
|
|
tmux send-keys -t penpot 'cd penpot/frontend' enter C-l
|
|
|
|
tmux send-keys -t penpot 'npx shadow-cljs watch main' enter
|
2016-11-20 14:08:24 -05:00
|
|
|
|
2020-11-10 06:41:20 -05:00
|
|
|
tmux new-window -t penpot:2 -n 'exporter'
|
|
|
|
tmux select-window -t penpot:2
|
|
|
|
tmux send-keys -t penpot 'cd penpot/exporter' enter C-l
|
|
|
|
tmux send-keys -t penpot 'npx shadow-cljs watch main' enter
|
2020-07-01 03:38:18 -05:00
|
|
|
tmux split-window -v
|
2020-11-10 06:41:20 -05:00
|
|
|
tmux send-keys -t penpot 'cd penpot/exporter' enter C-l
|
|
|
|
tmux send-keys -t penpot './scripts/wait-and-start.sh' enter
|
2020-07-01 03:38:18 -05:00
|
|
|
|
2020-11-10 06:41:20 -05:00
|
|
|
tmux new-window -t penpot:3 -n 'backend'
|
|
|
|
tmux select-window -t penpot:3
|
|
|
|
tmux send-keys -t penpot 'cd penpot/backend' enter C-l
|
|
|
|
tmux send-keys -t penpot './scripts/start-dev' enter
|
2016-11-20 14:08:24 -05:00
|
|
|
|
2020-11-10 06:41:20 -05:00
|
|
|
tmux rename-window -t penpot:0 'gulp'
|
|
|
|
tmux select-window -t penpot:0
|
|
|
|
tmux send-keys -t penpot 'cd penpot/frontend' enter C-l
|
|
|
|
tmux send-keys -t penpot 'npx gulp --theme=${PENPOT_THEME} watch' enter
|
2016-11-20 14:08:24 -05:00
|
|
|
|
2020-11-10 06:41:20 -05:00
|
|
|
tmux -2 attach-session -t penpot
|