fsc-utils/dbt_project.yml

42 lines
1.3 KiB
YAML
Raw Permalink Normal View History

2023-02-09 14:52:37 +00:00
# Name your project! Project names should contain only lowercase characters
# and underscores. A good package name should reflect your organization's
# name or the intended use of these models
2023-05-23 00:05:09 +00:00
name: "fsc_utils"
2023-02-09 14:52:37 +00:00
version: "1.0.0"
config-version: 2
# This setting configures which "profile" dbt uses for this project.
2023-05-23 01:45:22 +00:00
# profile: "fsc_utils"
2023-02-09 14:52:37 +00:00
# These configurations specify where dbt should look for different types of files.
# The `source-paths` config, for example, states that models in this project can be
# found in the "models/" directory. You probably won't need to change these!
model-paths: ["models"]
analysis-paths: ["analysis"]
test-paths: ["tests"]
seed-paths: ["data"]
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_modules"
- "dbt_packages"
tests:
+store_failures: true # all tests
# Configuring models
# Full documentation: https://docs.getdbt.com/docs/configuring-models
# In this example config, we tell dbt to build all models in the example/ directory
# as tables. These settings can be overridden in the individual model files
# using the `{{ config(...) }}` macro.
vars:
"dbt_date:time_zone": GMT
2023-02-24 18:03:53 +00:00
UPDATE_UDFS_AND_SPS: false
AWS_REGION: us-east-1
2023-10-26 15:07:16 +00:00
START_GHA_TASKS: False