Skip to content
This repository was archived by the owner on May 17, 2024. It is now read-only.

Commit ea68fb5

Browse files
authored
Merge pull request #559 from leoebfolsom/update-readme-with-db-specific-installation
add database-specific installation instructions to readme
2 parents eee180d + 6f633e2 commit ea68fb5

File tree

1 file changed

+31
-2
lines changed

1 file changed

+31
-2
lines changed

README.md

Lines changed: 31 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,11 +29,40 @@ data-diff is an open source package that you can use to see the impact of your d
2929
## Getting Started
3030

3131
**Install `data-diff`**
32+
33+
Install `data-diff` with the command that is specific to the database you use with dbt.
34+
35+
### Snowflake
36+
```
37+
pip install data-diff 'data-diff[snowflake,dbt]' -U
38+
```
39+
40+
### BigQuery
41+
```
42+
pip install data-diff 'data-diff[dbt]' google-cloud-bigquery -U
43+
```
44+
45+
### Redshift
46+
```
47+
pip install data-diff 'data-diff[redshift,dbt]' -U
48+
```
49+
50+
### Postgres
51+
```
52+
pip install data-diff 'data-diff[postgres,dbt]' -U
53+
```
54+
55+
### Databricks
56+
```
57+
pip install data-diff 'data-diff[databricks,dbt]' -U
58+
```
59+
60+
### DuckDB
3261
```
33-
pip install data-diff
62+
pip install data-diff 'data-diff[duckdb,dbt]' -U
3463
```
3564

36-
**Update a few lines in your `dbt_project.yml`**
65+
**Update a few lines in your `dbt_project.yml`**.
3766
```
3867
#dbt_project.yml
3968
vars:

0 commit comments

Comments
 (0)