Hi all! Has anyone had experience with managing db...
# integration-dbt
j
Hi all! Has anyone had experience with managing dbt code in its own GitHub repo, separate from their Dagster repo? I think I read something a couple of months back about the possibility to load dbt-code directly from its repo instead of having to supply a relative path - which implies mixing Dagster and dbt. Or would a better solution be to have runner mash both repos together at Docker build time?
s
I think you are referring to https://github.com/slopp/dagsterproj
if you're ok with the docker approach, it's what we're doing. it'll all just end up in the same image.
Or would a better solution be to have runner mash both repos together at Docker build time?
That's what's essentially happening here
j
Neat! Thanks, @Sven Lito ! I’ll try this out!