From 7d59df41b902e4cdf16b2ab08fbf15a91c83e3a2 Mon Sep 17 00:00:00 2001 From: Mathias Knoop Date: Tue, 13 Jun 2023 11:12:53 +0200 Subject: [PATCH] feat: rename tasks from beginning with 'run' to beginning with 'start' to achieve a uniform 'start...' and 'stop...' appearance of task names. --- Taskfile.yaml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/Taskfile.yaml b/Taskfile.yaml index 93f704ecf..9e5389245 100644 --- a/Taskfile.yaml +++ b/Taskfile.yaml @@ -4,6 +4,7 @@ dotenv: - 'dev.env' tasks: + unittest: desc: Executes helm unittests dir: charts/managed-identity-wallet @@ -18,10 +19,10 @@ tasks: buildDocker: desc: Build the app and the corresponding Docker image (tagged as "miw-test") cmds: - - task: buildJar + - task: build - docker build -t local-miw --platform linux/amd64 . - runDevEnv: + startDevEnv: desc: Spin up local Docker environment dir: dev-assets/dev-containers ignore_error: true @@ -37,7 +38,7 @@ tasks: cmds: - docker-compose down - runDockerApp: + startDockerApp: desc: Run the app in a container environment cmds: - task: runDevEnv