From 43c2aebd1af72a4e648672d17f7e1f257b16559a Mon Sep 17 00:00:00 2001 From: Gerhard Lazu Date: Fri, 29 Dec 2023 19:10:15 +0000 Subject: [PATCH] Only install dev & test deps when contributing `mix deps.get` requires access to oban repository which is not available to contributors. This updates the contributing docs to reflect that. Closes #494 Signed-off-by: Gerhard Lazu --- CONTRIBUTING.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index e6a37f870f..01ee6d3685 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -120,7 +120,8 @@ createdb changelog_test --username=postgres # 💜 CONFIGURE APP 💜 # Install deps -mix deps.get +mix deps.get --only dev +mix deps.get --only test # Prepare dev database mix ecto.setup