model-paths
dbt_project.yml
model-paths: [directorypath]
Definition
Optionally specify a custom list of directories where models and sources are located.
Default
By default, dbt will search for models and sources in the models
directory, i.e. model-paths: ["models"]
Examples
Use a subdirectory named transformations
instead of models
dbt_project.yml
model-paths: ["transformations"]
0