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

add database-specific installation instructions to readme #559

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
33 changes: 31 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,40 @@ data-diff is an open source package that you can use to see the impact of your d
## Getting Started

**Install `data-diff`**

Install `data-diff` with the command that is specific to the database you use with dbt.

### Snowflake
```
pip install data-diff 'data-diff[snowflake,dbt]' -U
```

### BigQuery
```
pip install data-diff 'data-diff[dbt]' google-cloud-bigquery -U
```

### Redshift
```
pip install data-diff 'data-diff[redshift,dbt]' -U
```

### Postgres
```
pip install data-diff 'data-diff[postgres,dbt]' -U
```

### Databricks
```
pip install data-diff 'data-diff[databricks,dbt]' -U
```

### DuckDB
```
pip install data-diff
pip install data-diff 'data-diff[duckdb,dbt]' -U
```

**Update a few lines in your `dbt_project.yml`**
**Update a few lines in your `dbt_project.yml`**.
```
#dbt_project.yml
vars:
Expand Down