run 239 B

123456789101112
  1. #!/usr/bin/with-contenv bash
  2. # This service is DEVELOPMENT only.
  3. if [ "$DEVELOPMENT" == "true" ]; then
  4. cd /app/frontend || exit 1
  5. # If yarn install fails: add --verbose --network-concurrency 1
  6. yarn install
  7. yarn watch
  8. else
  9. exit 0
  10. fi