mirror of
https://github.com/jc21/nginx-proxy-manager.git
synced 2024-08-30 18:22:48 +00:00
13 lines
239 B
Plaintext
Executable File
13 lines
239 B
Plaintext
Executable File
#!/usr/bin/with-contenv bash
|
|
|
|
# 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
|