Skip to main content

Can I store my models in a directory other than the `models` directory in my project?

By default, dbt expects the files defining your models to be located in the models subdirectory of your project.

To change this, update the model-paths configuration in your dbt_project.yml file, like so:

dbt_project.yml
model-paths: ["transformations"]
0