For those of you using the `dagster` plugin for or...
# plugins-general
a
For those of you using the
dagster
plugin for orchestration, how do you run a scheduler alongside it? If I was running dagster directly I would simply run
dagster dev
to get the daemon alongside it, but that is not a supported method to start the dagster ext @jules_huisman I added this to
meltano.yml
and it seemed to work with
meltano invoke dagster:dev
? Probably some horrible hack though!
Copy code
utilities:
  - name: dagster
    variant: quantile-development
    pip_url: dagster-ext
    commands:
      dev:
          args: dev -f $REPOSITORY_DIR/repository.py
          executable: dagster_invoker