0
Fork 0
mirror of https://github.com/penpot/penpot.git synced 2025-04-06 12:01:19 -05:00

Adapt devenv docker to new exporter app.

This commit is contained in:
Andrey Antukh 2020-07-01 10:38:18 +02:00 committed by Hirunatan
parent 4679373e0e
commit bcb2609b18
5 changed files with 72 additions and 3 deletions

View file

@ -37,6 +37,46 @@ RUN set -ex; \
; \
rm -rf /var/lib/apt/lists/*;
RUN set -ex; \
apt-get update && \
apt-get install -yq \
gconf-service \
libasound2 \
libatk1.0-0 \
libatk-bridge2.0-0 \
libcairo2 \
libcups2 \
libdbus-1-3 \
libexpat1 \
libfontconfig1 \
libgcc1 \
libgconf-2-4 \
libgdk-pixbuf2.0-0 \
libglib2.0-0 \
libgtk-3-0 \
libnspr4 \
libpango-1.0-0 \
libpangocairo-1.0-0 \
libx11-6 \
libx11-xcb1 \
libxcb1 \
libxcomposite1 \
libxcursor1 \
libxdamage1 \
libxext6 \
libxfixes3 \
libxi6 \
libxrandr2 \
libxrender1 \
libxss1 \
libxtst6 \
fonts-liberation \
libappindicator1 \
libnss3 \
libgbm1 \
; \
rm -rf /var/lib/apt/lists/*;
RUN apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 0xB1998361219BD9C9 && \
echo "deb http://repos.azulsystems.com/debian stable main" >> /etc/apt/sources.list.d/zulu.list && \
apt-get -qq update && \

View file

@ -77,7 +77,7 @@ http {
}
location /export {
proxy_pass http://127.0.0.1:6061/;
proxy_pass http://127.0.0.1:6061;
}
location /playground {

View file

@ -8,16 +8,28 @@ pushd ~/uxbox/frontend/
rm -rf node_modules;
npm ci;
popd
pushd ~/uxbox/exporter/
rm -rf node_modules;
npm ci;
popd
tmux -2 new-session -d -s uxbox
tmux new-window -t uxbox:1 -n 'shadow watch'
tmux select-window -t uxbox:1
tmux send-keys -t uxbox 'cd uxbox/frontend' enter C-l
tmux send-keys -t uxbox 'shadow-cljs watch main' enter
tmux send-keys -t uxbox 'npx shadow-cljs watch main' enter
tmux new-window -t uxbox:2 -n 'backend'
tmux new-window -t uxbox:2 -n 'exporter'
tmux select-window -t uxbox:2
tmux send-keys -t uxbox 'cd uxbox/exporter' enter C-l
tmux send-keys -t uxbox 'npx shadow-cljs watch main' enter
tmux split-window -v
tmux send-keys -t uxbox 'cd uxbox/exporter' enter C-l
tmux send-keys -t uxbox './bin/wait-and-start' enter
tmux new-window -t uxbox:3 -n 'backend'
tmux select-window -t uxbox:3
tmux send-keys -t uxbox 'cd uxbox/backend' enter C-l
tmux send-keys -t uxbox './bin/start-dev' enter

1
exporter/.nvmrc Normal file
View file

@ -0,0 +1 @@
v12.18.2

16
exporter/bin/wait-and-start Executable file
View file

@ -0,0 +1,16 @@
#!/usr/bin/env bash
set -e
wait_file() {
local file="$1"; shift
local wait_seconds="${1:-10}"; shift # 10 seconds as default timeout
until test $((wait_seconds--)) -eq 0 -o -f "$file" ; do sleep 1; done
((++wait_seconds))
}
wait_file "target/exporter.js" 120 && {
node target/exporter.js
}