Skip to content
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
7 changes: 4 additions & 3 deletions docs/_snippets/quickstart-package-install.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ Some packages we recommend you check out: [dbt_utils](https://github.com/dbt-lab
```yml packages.yml
packages:
- package: elementary-data/elementary
version: 0.16.4
version: 0.18.1
## Docs: https://docs.elementary-data.com
```
</Step>
Expand Down Expand Up @@ -87,7 +87,7 @@ Some packages we recommend you check out: [dbt_utils](https://github.com/dbt-lab
Please note that after setting this flag you may see a deprecation warning from dbt.
This is a temporary measure and we are working with the dbt team on a [longer term solution](https://github.com/dbt-labs/dbt-core/issues/10090).
</Accordion>

```yml dbt_project.yml
models:
## see docs: https://docs.elementary-data.com/
Expand All @@ -96,12 +96,13 @@ Some packages we recommend you check out: [dbt_utils](https://github.com/dbt-lab
+schema: "elementary"
## To disable elementary for dev, uncomment this:
# enabled: "{{ target.name in ['prod','analytics'] }}"

# Required from dbt 1.8 and above for certain Elementary features
flags:
require_explicit_package_overrides_for_builtin_materializations: False
source_freshness_run_project_hooks: True
```

</Step>
<Step title="Import the package and build Elementary models">

Expand Down