Skip to content

Commit

Permalink
chore: Update README to guide user to specific requirements file
Browse files Browse the repository at this point in the history
  • Loading branch information
lawrenceadams committed Sep 29, 2024
1 parent 548247f commit 76bf429
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 76bf429

Please sign in to comment.