Viewing a single comment thread. View all comments

observerrr t1_ix5lfap wrote

Can I change some values from a config.yaml file on a github repository and run the code to see what happens regarding my changes? I'm bit confused as there're many files that contain the same context so if I were to chnage some vlues from a cnfg file in order to obtain some overall changes do ı need to make same changes through the other files that has the same context

1

vidret t1_ix5zr4h wrote

Depends on how the code is written, but yes that is the idea.

You can always see what sort of changes the yaml file does by looking through the script/parts of the code that loads and makes use of it. But if a config file is there that’s probably where you should config things.

3