Hi team! where can I find examples on good ways to...
# ask-community
d
Hi team! where can I find examples on good ways to structure my dagster project given that I want to have multiple repos inside my workspace?
c
Hi Dennis. I don't think we have specific resources on how to structure multiple repos in a workspace, but I can drop some thoughts: • Separate assets into different directories by repository, so you can use functions like
load_assets_from_package_module
in your repository definitions • Same as above for jobs/sensors/schedules, since they likely point to the just the assets in the corresponding repository • Resources can exist together in a folder, so they can be applied to jobs across both repositories and configured per environment via
.configured