Files
data-platform/dbt/dbt_project.yml
Stijnvandenbroek 532bb5138a fix: dbt schema
2026-03-04 21:15:58 +00:00

28 lines
501 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"
models:
data_platform:
staging:
+materialized: view
+schema: staging
intermediate:
+materialized: view
+schema: intermediate
marts:
+materialized: table
+schema: marts