What's the best way for me to configure my project...
# general
b
What's the best way for me to configure my project build based on the target environment (dev, qa, prod)? I want to know how to choose the right Docker repositories and similar components. Right now, I can create and distribute Docker images to the development system, but I need to figure out how to adjust the system for different environments. Can you recommend any relevant documentation?
s
In https://www.pantsbuild.org/docs/using-pants-in-ci they mention you can do something like
PANTS_CONFIG_FILES=pants.ci.toml
. Maybe you can have multiple
<http://pants.ci|pants.ci>.[env].toml
and configure each environment to point to the right file?
👍 1