forked from edanalytics/edu_edfi_source
-
Notifications
You must be signed in to change notification settings - Fork 0
/
dbt_project.yml
48 lines (40 loc) · 1.13 KB
/
dbt_project.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
config-version: 2
name: 'edu_edfi_source'
version: '0.3.6'
require-dbt-version: [">=1.0.0", "<2.0.0"]
# This setting configures which "profile" dbt uses for this project.
profile: 'edu_edfi_source'
model-paths: ["models"]
analysis-paths: ["analyses"]
test-paths: ["tests"]
seed-paths: ["seeds"]
macro-paths: ["macros"]
snapshot-paths: ["snapshots"]
target-path: "target" # directory which will store compiled SQL files
clean-targets: # directories to be removed by `dbt clean`
- "target"
- "dbt_packages"
models:
edu_edfi_source:
+copy_grants: true
staging:
+schema: stage
edfi_3:
base:
+materialized: view
intermediate:
+materialized: ephemeral
int_ef3__deduped_descriptors:
+materialized: table
+tags: ['bypass_rls']
stage:
+materialized: table
tpdm:
base:
+materialized: view
stage:
+materialized: table
vars:
extensions: null
# student discipline participation codes that map to non-offenders
'edu:discipline:non_offender_codes': ['Victim', 'Witness', 'Reporter']