Update s6-overlay and move processes to new format

This commit is contained in:
Jamie Curnow
2023-03-17 08:50:32 +10:00
parent b30fcb50c8
commit 5b7682f13c
24 changed files with 97 additions and 63 deletions

View File

@ -0,0 +1,15 @@
#!/command/with-contenv bash
# shellcheck shell=bash
set -e
# This service is DEVELOPMENT only.
if [ "$DEVELOPMENT" == "true" ]; then
cd /app/frontend || exit 1
# If yarn install fails: add --verbose --network-concurrency 1
yarn install
yarn watch
else
exit 0
fi