Local testing question: I noticed sensors seem to ...
# dagster-plus
g
Local testing question: I noticed sensors seem to be disabled for Branch Deployments. How do I test sensors & the like locally? I have tried running both
dagit
in the repo dir and
dagster-daemon run
, but they don't seem to talk to each other (the status panel in
dagit
shows that there are no daemons running).
dagster bot responded by community 1
m
I ran into this before. You need to specify the same
DAGSTER_HOME
DAGSTER_HOME=/home/.../dagster dagit
DAGSTER_HOME=/home/.../dagster dagster-daemon run
🙌 1
keanu thanks 1
g
That was it - thank you.