With bazel I have the ability to set the .bazelrc ...
# general
p
With bazel I have the ability to set the .bazelrc in various locations.. is there a way to do something similar with pants? For instance, if I want to set a global option just for my computer.
1
Oh maybe I just use the environment variables?
c
you can have a
~/.pantsrc
and then in the project root to override with per project settings
p
https://www.pantsbuild.org/docs/options#environment-variables So
Copy code
export PANTS_LOCAL_STORE_FILES_MAX_SIZE_BYTES=xxx
Oh interesting Is that documented? I can't find it.. but I'm terrible at search.
c
p
Sweet. thanks!
👍 1