Where can instruct Dasgter to save the `tmp...` fi...
# ask-community
c
Where can instruct Dasgter to save the
tmp...
files generated during a run to save in a separate folder? Asking since when developing locally I'd like to add this folder to
.gitignore
so that I can simply do
git add .
when committing changes. Thanks!
z
I think you can configure this in your
dagster.yaml
using the compute_logs key: https://docs.dagster.io/deployment/dagster-instance#localcomputelogmanager-default
dagster bot responded by community 1
2
c
What Zach said above works - you should be able to change the storage location for all of dagster using the
storage
config keyword in your
dagster.yaml
https://docs.dagster.io/deployment/dagster-instance#dagster-storage
c
Nice, thanks @Zach !