From 92bb9a24b7355b3a117f9daabf9bd99f5062805e Mon Sep 17 00:00:00 2001 From: Joan Miquel Torres Date: Tue, 17 Sep 2024 16:31:55 +0200 Subject: [PATCH] Little improvement README's to dev-setup section. (#3297) Inserted a reminder to install libpq-dev before running `yarn lerna bootstrap`. It's pretty straightforward in light of the error messages, but I cloned the repo twice and failed both times. --- README.md | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 4d0e287b..132fb59d 100644 --- a/README.md +++ b/README.md @@ -75,10 +75,11 @@ If your change involves breaking backwards compatibility please please point tha ### Setting up for local development 1. Clone the repo -2. From your workspace root run `yarn` and then `yarn lerna bootstrap` -3. Ensure you have a PostgreSQL instance running with SSL enabled and an empty database for tests -4. Ensure you have the proper environment variables configured for connecting to the instance -5. Run `yarn test` to run all the tests +2. Ensure you have installed libpq-dev in your system. +3. From your workspace root run `yarn` and then `yarn lerna bootstrap` +4. Ensure you have a PostgreSQL instance running with SSL enabled and an empty database for tests +5. Ensure you have the proper environment variables configured for connecting to the instance +6. Run `yarn test` to run all the tests ## Troubleshooting and FAQ