Hi folks, Couldn’t find that in the docs. What’s t...
# questions
y
Hi folks, Couldn’t find that in the docs. What’s the default policy for custom envs? Do they also override base like local?
y
Yes, there is actually no such things like "custom" environments : any non "base" folder in the conf/ folder will be used to override the base environment, the name does not matter : https://docs.kedro.org/en/stable/configuration/configuration_basics.html#configuration-loading
You can configure the name of
base/
and
local/
in
settings.py
if you want
You can add
base_env
and
default_run_env
to
settings.py
:
Copy code
CONFIG_LOADER_ARGS = {
      "base_env": "base",
      "default_run_env": "local",
}
👍 1