This repo host the package.json
configuration file used to build the ThinkR r-universe.
Make a PR to append an entry to the package.json
file, such as:
{
"package": "<my-package-name>",
"url": "https://github.com/<my-package-github-url>"
}
A one-shot example using {golem}:
install.packages("golem", repos = "https://thinkr-open.r-universe.dev" )
Alternatively you can configure your repos
R option as such:
options(
repos = c(
thinkropen = "https://thinkr-open.r-universe.dev",
CRAN = "https://cloud.r-project.org"
)
)
install.packages("golem")