#' Universal project log function that instantiates, updates, and refreshes PROJECT_LOG object
#' @import readr
#' @export
project_log <-
function() {
unveil_project_log()
if (!(file.exists("PROJECT_LOG.RData"))) {
if (!(file.exists("PROJECT_LOG.csv"))) {
unveil_project_log()
}
} else {
PROJECT_LOG <<- readr::read_rds("PROJECT_LOG.RData")
add_new_csv_data_to_log()
}
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.