| 1234567891011121314151617181920 | #!/bin/shset -e# Install node modules if not foundif [ ! -d node_modules ]; then    npm installfiif [ "${BACKEND_DEBUG}" = "true" ]; then    export INSPECT_BRK="--inspect-brk=0.0.0.0:${BACKEND_DEBUG_PORT:-9229}"else    export INSPECT_BRK=""fiif [ "${APP_ENV}" = "development" ]; then    npm run develse    npm run prodfi
 |