From 0522707dce521dc4b0674e6747a914d9d15ef29c Mon Sep 17 00:00:00 2001 From: Joao P Dubas Date: Tue, 10 Dec 2024 00:34:01 +0000 Subject: [PATCH] chore(tasks): improve descriptions --- Taskfile.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Taskfile.yml b/Taskfile.yml index 8bd2b2b..48968a6 100644 --- a/Taskfile.yml +++ b/Taskfile.yml @@ -7,33 +7,33 @@ tasks: - task -l database_create: - desc: Run containerized database creation + desc: Create database cmds: - docker compose run --rm slax ecto.create database_migrate: - desc: Run containerized database migration + desc: Apply migrations to the database cmds: - docker compose run --rm slax ecto.migrate deps: - desc: Run containerized deps installation + desc: Install/update application dependencies cmds: - docker compose run --rm slax do deps.get, deps.compile install: - desc: Run containerized install process + desc: Setup the application cmds: - task: deps - task: database_create - task: database_migrate server: - desc: Run containerized server + desc: Serve the application cmds: - docker compose up -d test: - desc: Run containerized tests + desc: Run tests cmds: - docker compose run --rm slax test --trace