I am running a app.r script written by one of my ex colleague and he left the company quite a while back.
In order for me to open the app , I will have to type these 3 commands into Rstudios console before I can use the runApp/shiny::runApp() function.
- library(devtools)
- document()
- options(shiny.launch.browser = .rs.invokeShinyWindowExternal)
I would like to ask if there is any code that I could add into my colleague's app.R
I am trying to reduce the number of console code I have to type remove the need to do so before i use the runApp/shiny:runApp() function
Thanks in Advance.