From 7398782c1de2598a1cfc51b240950c703c1b66dd Mon Sep 17 00:00:00 2001 From: ariagraham-nhs Date: Thu, 23 Apr 2026 17:05:58 +0100 Subject: [PATCH] Update environment setup for OS differences --- README.md | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 0d174ca15a..13a7106972 100644 --- a/README.md +++ b/README.md @@ -110,9 +110,9 @@ Steps: - [AWS CLI](https://docs.aws.amazon.com/cli/latest/userguide/getting-started-install.html) - [Terraform](https://developer.hashicorp.com/terraform/tutorials/aws-get-started/install-cli) -3. Open VS Code and click the bottom-left corner (blue section), then select **"Connect to WSL"** and choose your WSL distro (e.g., `Ubuntu-24.04`). +3. (Windows Only) Open VS Code and click the bottom-left corner (blue section), then select **"Connect to WSL"** and choose your WSL distro (e.g., `Ubuntu-24.04`). Once connected, you should see the path as something similar to: `/mnt/d/Source/immunisation-fhir-api/backend`. -4. Run the following commands to install dependencies +4. (Windows only) Run the following commands to install dependencies ``` sudo apt update && sudo apt upgrade -y @@ -137,6 +137,12 @@ Steps: echo 'eval "$(direnv hook bash)"' >> ~/.bashrc ``` + On macOS, direnv can be installed using brew: + + ``` + brew install direnv + ``` + 7. Install poetry ```