| repo_set_urls | R Documentation |
Stores URLs in R options quak.core_repo / quak.community_repo so they
can be configured org-wide in .Rprofile. When core is supplied, also
sets DuckDB's custom_extension_repository on conn; passing NULL
resets that connection setting to DuckDB's default.
repo_set_urls(
core = NULL,
community = NULL,
check = TRUE,
conn = conn_default()
)
core |
Optional character scalar. URL for the core extension repository.
Omit to leave the current value unchanged. Pass |
community |
Optional character scalar. URL for the community extension
repository. Omit to leave the current value unchanged. Pass |
check |
Logical. If |
conn |
A DuckDB connection. Defaults to |
Invisibly returns a named list with elements core and community
reflecting the current option values.
old <- repo_urls()
repo_set_urls(core = "https://extensions.example.com", check = FALSE)
repo_urls()
repo_set_urls(core = old$core, check = FALSE)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.