Using environment vars is a common way to get roun...
# beginners-need-help
d
Using environment vars is a common way to get round this sort of thing. Set the var outside of Kedro and then tweak your
register_config_loader
method in
hooks.py
Copy code
python
globals_pattern="*globals.yml",
        globals_dict={
            k: v for k, v in os.environ 
            if k.startswith("date")
        },
    )