-
If you are deploying to Dagster Cloud Serverless and are using dbt core with dbt dependencies, you will likely see this message:
To install dbt dependencies into a Dagster Cloud Serverless application follow these steps:
dbt deps --project-dir ./dbt_project --profiles-dir ./dbt_project/config
FAQ
Errors in the
This means the file
Often if you have |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 6 replies
-
Using
|
Beta Was this translation helpful? Give feedback.
-
I think the current solution should be using recent pipeline definitions for gitlab and github. These are not however the definitions assigned when setting up a new code location in Dagster Cloud. It would be great if there existed a code location setup flow in which we could setup a project with dbt and dbt packages. |
Beta Was this translation helpful? Give feedback.
Using
dbt deps
with fast deploysIf you are using fast deploys (
ENABLE_FAST_DEPLOYS: 'true
), add the following steps to installdbt-core
and rundbt deps
to yourdeploy.yml
file, right after the fast deploys checkout step:This will install the deps in your
dbt_project
. The entire project directory is packaged and deployed as part of fast deploys, making…