Files
data-platform/dbt/dbt_project.yml
Stijnvandenbroek 0b9b408714 feat: expand testing
2026-03-04 22:18:30 +00:00

38 lines
656 B
YAML

name: data_platform
version: "1.0.0"
profile: data_platform
model-paths: ["models"]
seed-paths: ["seeds"]
test-paths: ["tests"]
analysis-paths: ["analyses"]
macro-paths: ["macros"]
snapshot-paths: ["snapshots"]
target-path: "target"
clean-targets:
- "target"
- "dbt_packages"
on-run-end:
- "{{ elementary.on_run_end() }}"
vars:
elementary:
edr_interval: 24h
models:
data_platform:
staging:
+materialized: view
+schema: staging
intermediate:
+materialized: view
+schema: intermediate
marts:
+materialized: table
+schema: marts
elementary:
+schema: elementary
+materialized: table