Skip to main content

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

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

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

dbt_project.yml
seed-paths: ["custom_seeds"]
0