https://dagster.io/ logo
#dagster-support
Title
# dagster-support
g

Gowtham Manne

06/02/2022, 4:07 PM
Hi All, I have dagit and dagster running as two separate threads, How can I connect or load repositories in this ?
should I use dagster. yaml file ?
o

owen

06/02/2022, 4:25 PM
hi @Gowtham Manne, a
dagster.yaml
file is not required for this workflow (if you're happy with the default configuration). if you're loading multiple repositories at once, you'll probably want to setup a
workspace.yaml
file: https://docs.dagster.io/concepts/repositories-workspaces/workspaces#using-a-workspace
as long as your DAGSTER_HOME environment variable is set, dagit and the dagster-daemon will both be pointed at the same storage locations
g

Gowtham Manne

06/02/2022, 4:33 PM
Hi @owen I have two VM, and running (1) dagit on one and (2)dagster on second. Now I have (3)workspace.yaml (and repo) in another project. We need to make dagster as service and launch the job Is this architecture correct ?
How Can I make them talk in between ?