Brandon Meek
01/19/2023, 8:05 PMkedro 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
datajoely
01/19/2023, 8:59 PMCONFIG_LOADER_CLASS
you have settings.py
so if you want to do this (why is very possible) you would need to subclass this and tweakBrandon Meek
01/19/2023, 9:03 PM