From ed949f032bab1300ed05bfd9edf916f81035e949 Mon Sep 17 00:00:00 2001 From: Kelvin Luu <51680299+0kl-usds@users.noreply.github.com> Date: Fri, 6 Dec 2024 12:30:25 -0800 Subject: [PATCH] Add in error codes --- api/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/package.json b/api/package.json index ece45e6..06112f5 100644 --- a/api/package.json +++ b/api/package.json @@ -16,7 +16,7 @@ "start:ts": "npm run build && node --inspect=0.0.0.0:9222 --nolazy build/server.js", "start:dev": "nodemon --watch 'src/**/*.ts' --exec \"npm run start:ts\"", "tunnel": "myapp_guid=$(cf app --guid $APP_NAME) && TUNNEL=$(cf curl /v2/apps/$myapp_guid/env | jq -r '[.system_env_json.VCAP_SERVICES.\"aws-rds\"[0].credentials | .host, .port] | join(\":\")') && echo 'Rat tunnel active' &&cf ssh -N -L 5432:$TUNNEL $APP_NAME", - "tunnel:stage": "APP_NAME=smeqa-stage npm run tunnel", + "tunnel:stage": "APP_NAME=smeqa-staging npm run tunnel", "tunnel:prod": "APP_NAME=smeqa-rr npm run tunnel", "watch": "tsc -w -p ." },