Hey all, so by default running `kedro run` will lo...
# questions
b
Hey all, so by default running
kedro run
will load the configurations from
conf/base
and then overwrite it with
conf/local
and you can use the
--env
argument to use a different environment instead of
conf/local
But I was wondering if there was a way to use the
--env
argument to waterfall instead of just overwrite? So if you ran
kedro run --env=dev
it would go
conf/base
->
conf/dev
->
conf/local
d
So this is handled by the
CONFIG_LOADER_CLASS
you have
settings.py
so if you want to do this (why is very possible) you would need to subclass this and tweak
Iv’e seen teams have actually taken this to the nth degree and done cascading config for different deployments of the same logic across multiple different geographies
👀 1
b
oh interesting, and thanks! I'll take a closer look