forked from dbt-labs/facebook-ads
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdbt_project.yml
27 lines (21 loc) · 964 Bytes
/
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
name: 'facebook_ads'
version: '0.7.0'
config-version: 2
require-dbt-version: [">=0.20.0"]
source-paths: ["models"] # paths with source code to compile
analysis-paths: ["analysis"] # path with analysis files which are compiled, but not run
target-path: "target" # path for compiled code
clean-targets: ["target"] # directories removed by the clean task
test-paths: ["test"] # where to store test results
data-paths: ["data"] # load CSVs from this directory with `dbt seed`
vars:
etl: #stitch or fivetran
ads_table: #table
ad_creatives_table: #table
adsets_table: #table
campaigns_table: #table
ads_insights_table: #table
ad_creatives__child_links_table: #table -- disable if on snowflake
url_tag_table: #only for fivetran
models:
facebook_ads: