Hello folks! Should Kedro replace global parameter...
# questions
e
Hello folks! Should Kedro replace global parameters specifying parameters at runtime? Ex: kedro run --params=“base_path=./new_source/data”
d
you can get this functionality with hooks, but CLI params like this don’t override the globals by default, it will override the parameters after templating has been interpolated
n
Or you can use a custom TemplatedConfigLoader https://github.com/kedro-org/kedro/discussions/1782
e
Thks guys!