| 123456789101112131415161718 | #!/bin/shset -e# Install node modules if not foundif [ ! -d node_modules ]; then    npm installfiif [ "${APP_ENV}" = "development" ]; then    ln -sf /opt/app/nginx.dev.conf /etc/nginx/http.d/default.conf    nginx    npm run develse    ln -sf /opt/app/nginx.prod.conf /etc/nginx/http.d/default.conf    nginx -g "daemon off;"fi
 |