diff --git a/services/apps/data_sink_worker/package.json b/services/apps/data_sink_worker/package.json index fb84b643ef..6ed6d8602c 100644 --- a/services/apps/data_sink_worker/package.json +++ b/services/apps/data_sink_worker/package.json @@ -4,8 +4,11 @@ "private": true, "scripts": { "start": "node -r tsconfig-paths/register -r ts-node/register src/main.ts --transpile-only", - "start:debug": "set -a && . ../../../backend/.env.dist.local && . ../../../backend/.env.override.local && set +a && SERVICE=data-sink-worker LOG_LEVEL=trace node --inspect=0.0.0.0:9233 -r tsconfig-paths/register -r ts-node/register src/main.ts --transpile-only", + "start:debug:local": "set -a && . ../../../backend/.env.dist.local && . ../../../backend/.env.override.local && set +a && SERVICE=data-sink-worker LOG_LEVEL=trace node --inspect=0.0.0.0:9233 -r tsconfig-paths/register -r ts-node/register src/main.ts --transpile-only", + "start:debug": "SERVICE=data-sink-worker LOG_LEVEL=trace node --inspect=0.0.0.0:9233 -r tsconfig-paths/register -r ts-node/register src/main.ts --transpile-only", + "start:watch:local": "nodemon --watch src --ext ts --exec npm run start:debug:local", "start:watch": "nodemon --watch src --ext ts --exec npm run start:debug", + "dev:local": "concurrently \"npm run start:watch:local\" \"../../scripts/watch_libs.sh --service data_sink_worker\"", "dev": "concurrently \"npm run start:watch\" \"../../scripts/watch_libs.sh --service data_sink_worker\"", "lint": "eslint --ext .ts src --max-warnings=0", "format": "prettier --write \"src/**/*.ts\"", diff --git a/services/apps/integration_data_worker/package.json b/services/apps/integration_data_worker/package.json index dbf2ac9cf8..636a4da296 100644 --- a/services/apps/integration_data_worker/package.json +++ b/services/apps/integration_data_worker/package.json @@ -4,8 +4,11 @@ "private": true, "scripts": { "start": "node -r ts-node/register src/main.ts --transpile-only", - "start:debug": "set -a && . ../../../backend/.env.dist.local && . ../../../backend/.env.override.local && set +a && SERVICE=integration-data-worker LOG_LEVEL=trace node --inspect=0.0.0.0:9232 -r ts-node/register src/main.ts --transpile-only", + "start:debug:local": "set -a && . ../../../backend/.env.dist.local && . ../../../backend/.env.override.local && set +a && SERVICE=integration-data-worker LOG_LEVEL=trace node --inspect=0.0.0.0:9232 -r ts-node/register src/main.ts --transpile-only", + "start:debug": "SERVICE=integration-data-worker LOG_LEVEL=trace node --inspect=0.0.0.0:9232 -r ts-node/register src/main.ts --transpile-only", + "start:watch:local": "nodemon --watch src --ext ts --exec npm run start:debug:local", "start:watch": "nodemon --watch src --ext ts --exec npm run start:debug", + "dev:local": "concurrently \"npm run start:watch:local\" \"../../scripts/watch_libs.sh --service integration_data_worker\"", "dev": "concurrently \"npm run start:watch\" \"../../scripts/watch_libs.sh --service integration_data_worker\"", "lint": "eslint --ext .ts src --max-warnings=0", "format": "prettier --write \"src/**/*.ts\"", diff --git a/services/apps/integration_run_worker/package.json b/services/apps/integration_run_worker/package.json index f147f4e7f6..eb7ae041d2 100644 --- a/services/apps/integration_run_worker/package.json +++ b/services/apps/integration_run_worker/package.json @@ -4,8 +4,11 @@ "private": true, "scripts": { "start": "node -r ts-node/register src/main.ts --transpile-only", - "start:debug": "set -a && . ../../../backend/.env.dist.local && . ../../../backend/.env.override.local && set +a && SERVICE=integration-run-worker LOG_LEVEL=trace node --inspect=0.0.0.0:9230 -r ts-node/register src/main.ts --transpile-only", + "start:debug:local": "set -a && . ../../../backend/.env.dist.local && . ../../../backend/.env.override.local && set +a && SERVICE=integration-run-worker LOG_LEVEL=trace node --inspect=0.0.0.0:9230 -r ts-node/register src/main.ts --transpile-only", + "start:debug": "SERVICE=integration-run-worker LOG_LEVEL=trace node --inspect=0.0.0.0:9230 -r ts-node/register src/main.ts --transpile-only", + "start:watc:local": "nodemon --watch src --ext ts --exec npm run start:debug:local", "start:watch": "nodemon --watch src --ext ts --exec npm run start:debug", + "dev:local": "concurrently \"npm run start:watch:local\" \"../../scripts/watch_libs.sh --service integration_run_worker\"", "dev": "concurrently \"npm run start:watch\" \"../../scripts/watch_libs.sh --service integration_run_worker\"", "lint": "eslint --ext .ts src --max-warnings=0", "format": "prettier --write \"src/**/*.ts\"", diff --git a/services/apps/integration_stream_worker/package.json b/services/apps/integration_stream_worker/package.json index 2ef416ce20..5910d4c450 100644 --- a/services/apps/integration_stream_worker/package.json +++ b/services/apps/integration_stream_worker/package.json @@ -4,8 +4,11 @@ "private": true, "scripts": { "start": "node -r ts-node/register src/main.ts --transpile-only", - "start:debug": "set -a && . ../../../backend/.env.dist.local && . ../../../backend/.env.override.local && set +a && SERVICE=integration-stream-worker LOG_LEVEL=trace node --inspect=0.0.0.0:9231 -r ts-node/register src/main.ts --transpile-only", + "start:debug:local": "set -a && . ../../../backend/.env.dist.local && . ../../../backend/.env.override.local && set +a && SERVICE=integration-stream-worker LOG_LEVEL=trace node --inspect=0.0.0.0:9231 -r ts-node/register src/main.ts --transpile-only", + "start:debug": "SERVICE=integration-stream-worker LOG_LEVEL=trace node --inspect=0.0.0.0:9231 -r ts-node/register src/main.ts --transpile-only", + "start:watch:local": "nodemon --watch src --ext ts --exec npm run start:debug:local", "start:watch": "nodemon --watch src --ext ts --exec npm run start:debug", + "dev:local": "concurrently \"npm run start:watch:local\" \"../../scripts/watch_libs.sh --service integration_stream_worker\"", "dev": "concurrently \"npm run start:watch\" \"../../scripts/watch_libs.sh --service integration_stream_worker\"", "lint": "eslint --ext .ts src --max-warnings=0", "format": "prettier --write \"src/**/*.ts\"",