feat(justfile): add start-test-db recipe for an isolated test database
Some checks reported errors
continuous-integration/drone/push Build was killed
continuous-integration/drone/promote/production Build was killed

This commit is contained in:
Moritz 2026-06-15 17:48:53 +02:00
parent c332a4dde2
commit 2363ef69e3

View file

@ -29,6 +29,9 @@ seed-database:
start-database: start-database:
docker compose up -d 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. # Full check suite: lint + audit + the fast tests (slow/ui excluded). No Dialyzer.
ci-dev: install-dependencies lint audit test-fast ci-dev: install-dependencies lint audit test-fast