Hi all! I have 2 questions. 1. I'm using the `loa...
# ask-community
j
Hi all! I have 2 questions. 1. I'm using the
load_assets_from_dbt_project
to load asset from dbt folder. How can I modify this config?
j
one option would be to make a job from your dbt assets using
define_asset_job
and provide config to that job using `define_asset_job`s
config
parameter https://docs.dagster.io/concepts/ops-jobs-graphs/jobs#from-software-defined-assets https://docs.dagster.io/_apidocs/assets#dagster.define_asset_job cc @owen if there is another method
o
hi @Julius! @jamie’s answer is what I would generally recommend if you want to set up a job to run a configured version of your dbt models. The most common usecase here is for people who want to have a separate job to run a "full-refresh" run of their dbt assets. If you're interested on a more ad-hoc setup, you can also provide config through the UI if you shift+click on the "materialize" button. This will give you a typeahead editor to interact with.