I’ve been using dbt for a year, and started a new project with seed data. There is a single csv file in the ./data folder. the dbt_project file contains:
name: oddz_data_marts
version: '1.0'
profile: 'marts'
source-paths: ["models"]
analysis-paths: ["analysis"]
test-paths: ["tests"]
data-paths: ["data"]
macro-paths: ["macros"]
target-path: "target" # directory which will store compiled SQL files
clean-targets: # directories to be removed by `dbt clean`
- "target"
- "dbt_modules"
seeds:
oddz_data_marts:
enabled: true
schema: seed_data
quote_columns: false
models:
oddz_data_marts:
The results of “dbt seed”, are…
WARNING: Configuration paths exist in your dbt_project.yml file which do not apply to any resources.
There are 1 unused configuration paths:
- seeds.oddz_data_marts
Help ?