Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion services/apps/data_sink_worker/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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\"",
Expand Down
5 changes: 4 additions & 1 deletion services/apps/integration_data_worker/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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\"",
Expand Down
5 changes: 4 additions & 1 deletion services/apps/integration_run_worker/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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\"",
Expand Down
5 changes: 4 additions & 1 deletion services/apps/integration_stream_worker/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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\"",
Expand Down