alfredo_suarez
06/19/2023, 7:04 AMmeltano invoke dagster:start boots dagster in <http://127.0.0.1:3000> which is a problem because without fishy workarounds you can’t access it. 
Has anyone done this, having meltano as the main project, and dagster as a utility? Is there anyway I can boot dagster to 0.0.0.0:3000 with extra parameters to the invoke
I guess the other workaround is to have dagster being the main project and use meltano as a sub project. Many thanks :)alfredo_suarez
06/19/2023, 7:27 AMdagit command, maybe "-h", "0.0.0.0" as args work. Will test soonalfredo_suarez
06/19/2023, 8:14 AMmeltano dagster invoke:start -h 0.0.0.0 solves my blocker 🙂Andy Carter
06/19/2023, 9:57 AMalfredo_suarez
06/19/2023, 10:20 AMAndy Carter
06/19/2023, 10:23 AMmeltano.yaml  for dagster like this
utilities:
  - name: dagster
    variant: quantile-development
    pip_url: dagster-ext
    commands:
      dev:
          args: dev -f $REPOSITORY_DIR/repository.py --dagit-host 0.0.0.0
          executable: dagster_invokeralfredo_suarez
06/19/2023, 11:19 AMalfredo_suarez
06/19/2023, 11:20 AMAndy Carter
06/20/2023, 7:15 AMalfredo_suarez
06/20/2023, 12:58 PM