From 2363ef69e3d8b10b4e367cf7fd99194091692b50 Mon Sep 17 00:00:00 2001 From: Moritz Date: Mon, 15 Jun 2026 17:48:53 +0200 Subject: [PATCH] feat(justfile): add start-test-db recipe for an isolated test database --- Justfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Justfile b/Justfile index 9b0be65..576b4f3 100644 --- a/Justfile +++ b/Justfile @@ -29,6 +29,9 @@ seed-database: start-database: docker compose up -d +start-test-db: + docker compose up -d db + # Full check suite: lint + audit + the fast tests (slow/ui excluded). No Dialyzer. ci-dev: install-dependencies lint audit test-fast