# Package name
name: 'dbt_accounting'
version: '1.0'

config-version: 2

# DB connection profile (specified in profiles.yml)
profile: 'snowflake'

# Paths for various types of files
model-paths: ["models"]
analysis-paths: ["analysis"]
test-paths: ["tests"]
seed-paths: ["seeds"]
macro-paths: ["macros"]

# Path to store compiled SQL files after running
target-path: "target"

# Paths to be removed with "dbt clean"
clean-targets:
  - "target"
  - "dbt_packages"

vars:
  # Global vars
  qa_target_name: 'qa'
  test_target_name: 'test'

models:
  dbt_accounting:
    expenses:
      +materialized: table
    revenue:
      +materialized: table
