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