From 3be6c0d73225cd7ae2ba92229f1acf4e8c37afc3 Mon Sep 17 00:00:00 2001 From: Cesar Flores Date: Sat, 7 Mar 2026 09:44:35 +0700 Subject: [PATCH] refactor: Rename database management commands in Justfile for consistency --- Justfile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Justfile b/Justfile index 4dcca95..52fe1c1 100644 --- a/Justfile +++ b/Justfile @@ -36,16 +36,16 @@ publish db=VARIANT: ### Tests ### # Start the database and wait until it's healthy -db-up db=VARIANT: +up db=VARIANT: just build {{db}} docker compose -f {{db}}/compose.yml up -d --wait # Stop the database container but preserve data volumes -db-down db=VARIANT: +down db=VARIANT: docker compose -f {{db}}/compose.yml down # Stop the database container and remove data volumes -db-clean db=VARIANT: +clean db=VARIANT: docker compose -f {{db}}/compose.yml down -v @@ -59,5 +59,5 @@ test db=VARIANT: # Run tests against a Postgres database _test-postgres: #!/usr/bin/env bash - just db-up postgres + just up postgres docker compose -f postgres/compose.yml exec postgres pg_isready -U ${POSTGRES_USER}