golemexample
golemexample copied to clipboard
Warning: Error in get: Config file config.yml not found in current working directory or parent directories
Hi, im a beginner in R Shiny and was stumbling to reproduce the golemexample to learn how things works. I was having this warning, and my golemexample was not working properly. It was not printing one of the modules.
I google it and found this issue in golem github (here). So, i just change the third_module (mod_my_third_module.R) to this: line 33 head(base::get(r$my_other_module$which), 10) instead of this: line 33 head(get(r$my_other_module$which), 10) And now it works as expected. Maybe this is not the right place, but my goal is just to point that out to help another beginners to understand better your framework.