run 175 B

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