Exclude subdirectory as part of dbt_project configuration? #5466
-
Hi! I would like to be able to colocate my data science jupyter notebooks that allow me to generate my seeds with the seeds themselves. The issue I am facing is that one of said data science uses a csv file as source data to create the seed, and said csv file is picked up automatically by Here's the file structure:
Here's the
I tried Am I missing something in my configuration or this is something that is not supported by dbt? Thanks a lot! |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 2 replies
-
Hey @philippefutureboy, the most obvious thing that jumps out is that your directory is called |
Beta Was this translation helpful? Give feedback.
-
Try adding the project name into your seeds config: seeds:
+schema: "{{env_var('DATASET_PREFIX')}}_common_raw"
project_name:
# resource-paths
_datascience:
+enabled: false |
Beta Was this translation helpful? Give feedback.
Try adding the project name into your seeds config: