Skip to content

Commit

Permalink
Updated README.
Browse files Browse the repository at this point in the history
  • Loading branch information
elongl committed Dec 19, 2022
1 parent 3988031 commit 87e3ff4
Showing 1 changed file with 32 additions and 1 deletion.
33 changes: 32 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,44 @@ To learn more, refer to our [main repo »](https://github.com/elementary-data/el

Add to your `packages.yml` according to your dbt version:

```yml
**For dbt 1.3.0 and above:**

```yml packages.yml
packages:
- package: elementary-data/elementary
version: 0.6.6
## Docs: https://docs.elementary-data.com
```

**For dbt >=1.2.0 \<1.3.0:**

```yml packages.yml
packages:
- package: elementary-data/elementary
version: 0.6.6
## Docs: https://docs.elementary-data.com

## !! Important !! For dbt >=1.2.0 \<1.3.0 ##
## (Prevents dbt_utils versions exceptions) ##
- package: dbt-labs/dbt_utils
version: [">=0.8.0", "<1.0.0"]
```
**For dbt >=1.0.0 \<1.2.0:**
```yml packages.yml
packages:
- package: elementary-data/elementary
version: 0.6.6
## Docs: https://docs.elementary-data.com

## !! Important !! For dbt <1.2.0 ##
## (Prevents dbt_utils versions exceptions) ##
- package: dbt-labs/dbt_utils
version: [">=0.8.0", "<0.9.0"]
```
After adding to `packages.yml` and running `dbt deps`, add to your ```dbt_project.yml```:
```yml
models:
Expand Down

0 comments on commit 87e3ff4

Please sign in to comment.