hi everyone, i am new with dagster. I have a littl...
# ask-community
y
hi everyone, i am new with dagster. I have a little problem. I have created my assets it also work. However, when I create my job in the init file it is not shown to me in digit UI. Do you have any idea what this can be?
Copy code
from dagster import AssetSelection, define_asset_job, Definitions, load_assets_from_modules
from dagster_test_version.k2_training_test import typeform_daily

all_assets = load_assets_from_modules([typeform_daily])
training_daily_job = define_asset_job("training_daily_job", selection=AssetSelection.all())

defs = Definitions(
    assets=all_assets,
    jobs=[training_daily_job]
)
t
Hi Yavuz! That code looks right to me. Where are you looking for the job? In
/overview/jobs
? and are you reloading your definitions after making that change?
image.png