From 76bf4293fb782276d0df69fa253215ccef255b71 Mon Sep 17 00:00:00 2001 From: Lawrence Adams Date: Sun, 29 Sep 2024 21:13:26 +0100 Subject: [PATCH] chore: Update README to guide user to specific requirements file --- README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 6fbf9c1..a0607f3 100644 --- a/README.md +++ b/README.md @@ -36,7 +36,9 @@ dbt-env\Scripts\activate # activate the environment for Windows ``` 4. In your virtual environment, install dbt and other required dependencies as follows: ```bash -pip3 install -r requirements.txt +# choose requirements depending on which database you're targeting +pip3 install -r requirements/duckdb.txt +pip3 install -r requirements/postgres.txt pre-commit install ``` - This will install dbt-core, the dbt duckdb and postgres adapters, SQLFluff (a SQL linter), pre-commit (in order to run SQLFluff on all newly-committed code in this repo), duckdb (to support bootstrapping scripts), and various dependencies for the listed packages