Reports on the availability of certain features of your compute
infrastructure, for example, environment variables, or a specific RStudio
Package Manager instance. Configure the tests with the use_envstat
and
edit_envstat
functions.
sitrep(silent = FALSE, path = "~/.envstat")
boolean disables printed output
path to the envstat config file
TRUE/FALSE invisibly, to indicate all checks pass/fail
if (FALSE) {
# By default envstat uses a config file in your home directory
envstat::sitrep()
# But you can tell it to use a different config file if you prefer
envstat::sitrep(path = "/tmp/config.yml")
# sitrep can also run silently, so that it can be used programatically
envstat::sitrep(silent = TRUE)
}