0
Fork 0
mirror of https://github.com/penpot/penpot.git synced 2025-01-24 15:39:50 -05:00
penpot/docker/devenv/files/init.sh
2020-02-25 16:24:40 +01:00

15 lines
266 B
Bash
Executable file

#!/usr/bin/env zsh
set -e;
source ~/.zshrc
echo "[init.sh] Setting up local permissions."
sudo chown -R uxbox /home/uxbox/local
echo "[init.sh] Installing node dependencies"
pushd /home/uxbox/uxbox/frontend/
npm ci
popd
echo "[init.sh] Ready!"
tail -f /dev/null