Skip to main content

analysis-paths

dbt_project.yml
analysis-paths: [directorypath]

Definition

Specify a custom list of directories where analyses are located.

Default

Without specifying this config, dbt will not compile any .sql files as analyses.

However, the dbt init command populates this value as analyses (source)

Examples

Use a subdirectory named analyses

This is the value populated by the dbt init command.

dbt_project.yml
analysis-paths: ["analyses"]

Use a subdirectory named custom_analyses

dbt_project.yml
analysis-paths: ["custom_analyses"]
0