mirror of
https://github.com/penpot/penpot.git
synced 2025-01-09 16:30:37 -05:00
8c18e9bfbf
And make the devenv http server behave similar to a production environment (related to cache handling).
13 lines
215 B
Bash
Executable file
13 lines
215 B
Bash
Executable file
#!/usr/bin/env zsh
|
|
|
|
set -e;
|
|
source ~/.zshrc
|
|
|
|
echo "[init.sh] Start nginx."
|
|
sudo nginx
|
|
|
|
echo "[init.sh] Setting up local permissions."
|
|
sudo chown -R uxbox /home/uxbox/local
|
|
|
|
echo "[init.sh] Ready!"
|
|
tail -f /dev/null
|