View source: R/outpack_config.R
| orderly_config | R Documentation |
Read the current orderly configuration, stored within the outpack root, along with any orderly-specific extensions.
orderly_config(root = NULL)
root |
The path to the root directory, or |
A list of configuration options:
core: The most important options about the outpack store, containing:
path_archive: The path to the human-readable packet archive,
or NULL if disabled (set in orderly_config_set() as
core.path_archive)
use_file_store: Indicates if a content-addressable file store
is enabled (core.use_file_store)
require_complete_tree: Indicates if this outpack store requires
all dependencies to be fully available (core.require_complete_tree)
hash_algorithm: The hash algorithm used (currently not modifiable)
location: Information about locations; see
orderly_location_add(),
orderly_location_rename() and
orderly_location_remove() to interact with this
configuration, or orderly_location_list() to more
simply list available locations. Returns as a data.frame with
columns name, id, priority, type and args, with args
being a list column.
orderly: A list of orderly-specific configuration; this is
just the minimum required version (as
minimum_orderly_version).
# A default configuration in a new temporary directory
path <- withr::local_tempdir()
orderly_init(path)
orderly_config(path)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.