1
0
Fork 0

fix(build): correct ep for run targets

This commit is contained in:
Sean Sube 2022-10-21 12:53:00 -05:00
parent 00a8990b04
commit 0aa844003f
1 changed files with 2 additions and 2 deletions

View File

@ -73,13 +73,13 @@ RUN_ARGS ?= --config data/config.yml \
run: ## run app with demo data
run: build
node $(NODE_ARGS) out/src/index.js $(RUN_ARGS)
node $(NODE_ARGS) out/src/cli.js $(RUN_ARGS)
run-debug: ## run app and wait for debugger
NODE_ARGS=--inspect-brk $(MAKE) run
run-graph: build
node $(NODE_ARGS) out/src/index.js $(RUN_ARGS) --depth 13
node $(NODE_ARGS) out/src/cli.js $(RUN_ARGS) --depth 13
$(MAKE) graph
run-image: ## run app from docker image