Skip to content

Commit

Permalink
feat: rename tasks from beginning with 'run' to beginning with 'start…
Browse files Browse the repository at this point in the history
…' to achieve a uniform 'start...' and 'stop...' appearance of task names.
  • Loading branch information
mknoopvw committed Jun 13, 2023
1 parent 0b49352 commit 7d59df4
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions Taskfile.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ dotenv:
- 'dev.env'

tasks:

unittest:
desc: Executes helm unittests
dir: charts/managed-identity-wallet
Expand All @@ -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
Expand All @@ -37,7 +38,7 @@ tasks:
cmds:
- docker-compose down

runDockerApp:
startDockerApp:
desc: Run the app in a container environment
cmds:
- task: runDevEnv
Expand Down

0 comments on commit 7d59df4

Please sign in to comment.