Skip to content

Commit

Permalink
fix(make): add explicit run_dev target
Browse files Browse the repository at this point in the history
Signed-off-by: Cameron Smith <[email protected]>
  • Loading branch information
cameronraysmith committed Dec 3, 2023
1 parent bc61f58 commit 2090890
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,9 @@ HYDRA_OVERRIDES = $(filter-out $@,$(MAKECMDGOALS))
run: ## Run registered workflow in remote dev mode. (default)
poetry run dna $(HYDRA_OVERRIDES)

run_dev: ## Run registered workflow in remote dev mode.
poetry run dna execution_context=remote_dev $(HYDRA_OVERRIDES)

run_prod: ## Run registered workflow in remote prod mode. (ci default)
poetry run dna execution_context=remote_prod $(HYDRA_OVERRIDES)

Expand Down

0 comments on commit 2090890

Please sign in to comment.