mirror of
https://github.com/penpot/penpot.git
synced 2026-05-08 17:48:39 +00:00
16 lines
266 B
Bash
Executable File
16 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
|