Hello there,
recently I developed and deployed my very first shiny app on shinyapp.io and I am very happy how easy the procedure was. However I wonder about what happens when the app goes from sleeping to running. Does the code get rerun? I'm asking because one of my input data originates from an online stored csv file (stashed in a github repo). I bluntly accessed and loaded it by using
url_to_file <- "https://raw.githubusercontent.com/user/some_data.csv"
my_data <- read_csv(url_to_file)
So will my app be running on the latest available data (if the code gets rerun) or will the data be in the state of the publishing date?