10  Set up your own universe

Creating a universe for your R packages can be done in a few steps:

  1. Create a Git repository named (all lowercase) <your-username>.r-universe.dev on your GitHub account, containing a packages.json file which lists the Git repositories with R packages to include.
    • For an organization at github.com/ropensci the repository is thus github.com/ropensci/ropensci.r-universe.dev;
    • similarly for an user at github.com/jeroen the repository is github.com/jeroen/jeroen.r-universe.dev.
  2. Install the r-universe app on this same GitHub account or organization for which you want to create the universe. Clicking on the app link will lead you to a page that asks “Where do you want to install R-universe?”.
  3. Wait for your packages to start appearing on https://<yourname>.r-universe.dev once they have finished building.
  4. Document how to install packages from R-universe in the docs of your packages.

A few more details on each step below.

10.1 Creating your personal R-universe subdomain

In R-universe, every user has a private subdomain, where you control the content, and which does not interfere with other users. The subdomains are tied to the GitHub account or organization with that name.

10.1.1 Case-sensitivity

Domain names are by definition case-insensitive and lowercased.

10.1.2 How much GitHub is compulsory?

Hence, in order to start a universe you need a GitHub account. However the R packages themselves do not necessarily need to exist under that same account. They don’t even need to be on GitHub: they may be hosted on any public Git server. If your R packages are hosted on another Git service, such as Gitlab, or a university Git server, you can simply use a GitHub account only for publishing a packages.json registry for that username, without having to buy into the full GitHub platform.

10.2 Populating the packages.json registry file

In order to publish content on R-universe, you need to create a registry file called packages.json, which lists the Git urls containing the R packages you want to include in your universe. The file is formatted as a JSON array with required fields package and url for each entry, for example:

[
    {
        "package": "curl",
        "url": "https://github.com/jeroen/curl"
    },
    {
        "package": "pdftools",
        "url": "https://github.com/ropensci/pdftools"
    },
    {
        "package": "stringdist",
        "url": "https://github.com/markvanderloo/stringdist",
        "subdir": "pkg"
    }
]

10.2.1 Special case of CRAN packages

When browsing the R-universe homepage you may notice that some major universes that contain many CRAN packages do not have a packages.json registry: When the R-universe app is installed on a GitHub account that does not have a proper packages.json file, the build system automatically starts adding all packages from CRAN which are owned by that particular GitHub account. Ownership is determined by the presence of a link to a GitHub repository in the URL or BugReports field of a CRAN package. Our scraper scans all CRAN packages for GitHub links on a daily basis and stores results in the cran-to-git database.

These are effectively auto-generated registries, on which the build system will fall back if the user does not have a personal registry. As soon as the user creates a proper universe registry repository with the packages.json file, this will take precedence, and the build system will automatically switch over.

10.2.1.1 How to prevent a CRAN/BioC package from automatically being indexed by R-universe

CRAN and BioConductor packages with a valid Git URL in the description are automatically indexed by R-universe. To prevent this, add a line to the package DESCRIPTION file with: Config/runiverse/noindex: true (Config/ field names are allowed on CRAN). The R-universe scraper runs once per day, so it can take up to 24 hours for the package to be removed from R-universe.

10.2.2 Tracking custom branches or releases

By default, R-universe tracks and builds the default branch for each package Git repository, for instance master or main. It is possible to customize which Git branch or tag to track by adding a branch field to the registry.

The branch field can take the name of any Git reference (either a branch or a tag). You can also set it to a special value "*release" which will automatically lookup the most recent GitHub release, using the same syntax as in remotes. For example:

[
  {
    "package" : "somepackage",
    "url" : "https://github.com/jeroen/somepackage",
    "branch" : "stable"
  }
  {
    "package": "jose",
    "url": "https://github.com/jeroen/jose",
    "branch" : "*release"
  }
]

If you want to use the default Git branch, it is safest to omit the branch field. This way everything will keep working, even if the default branch gets another name at some point in the future.

10.2.3 Hand-written or programmatically created

You can either hand-write this packages.json file, or programmatically create it using the tools of your choice. For example you can generate it in R from a data frame using jsonlite:

df <- data.frame(
    package = c("curl", "pdftools", "stringdist"),
    url = c("https://github.com/jeroen/curl", "https://github.com/ropensci/pdftools", 
        "https://github.com/markvanderloo/stringdist"),
    subdir = c(NA, NA, "pkg")
)
jsonlite::write_json(df, 'packages.json', pretty = TRUE)

The url value must be a public Git url. This is important; our build servers literally call git clone ${url} on each of the entries. The package field must match the name of the R package from the DESCRIPTION file under that url. If the R package does not live in the root of the Git repository, you also need to set the subdir field to the path of the R package root directory.

When creating a new universe, start by adding no more than a few packages. You can easily add more packages later by updating your packages.json file.

To publish your registry, create a Git repository called <yourname>.r-universe.dev on your GitHub account and push your packages.json file. See for example: https://github.com/maelle/maelle.r-universe.dev.

10.3 Installing the GitHub app

Once you pushed your packages.json file to your new universe repository on GitHub, the next step is to install the R-universe GitHub app on your account.

ghapp

ghapp

10.4 Waiting for the first build

Once you installed the app, the system will automatically create your personal monorepo under the R-universe organization: https://github.com/r-universe/<yourname>. This is where the system keeps the full history of your packages. The actions tap of your monorepo is also where the building happens.

builds

builds

After a while (usually no more than one hour), packages and articles that have completed building on all platforms will start appearing on your dashboard, and directly become available for installation by users.

dashboard

dashboard

The GitHub app requires very limited permissions, it only requests permission to read and write commit statuses. This means that the R-universe build system can post a green checkmark on your package Git commits, once your package is successfully built and deployed to R-universe. Thereby R-universe serves as a full CI-CD system that shows you if your package build and deploy was successful.

success

success

10.5 Adding badges and user instructions

Once your packages have appeared on the dashboard, try installing them in R using the instructions from the dashboard page, for example:

# Enable this universe
options(repos = c(
    maelle = 'https://maelle.r-universe.dev',
    CRAN = 'https://cloud.r-project.org'))

# Install some packages
install.packages('tinkr')

To help package users, you can consider copying these instructions to your package README.md files. And of course you can add an R-universe badge to the package README as well.

The badge API is simply /badges/<package> which will yield an SVG image that can directly be embedded into your markdown files, showing the deployed version for the given package:

![r-universe](https://r-lib.r-universe.dev/badges/cpp11)

For example this would produce the following badge:

10.6 Linking to your universe from other websites

Feel free to add a link to your universe from your other online profile (website, social media, GitHub profile README, etc.). You can use a rocket icon as icon.

Hugo Academic Theme: To display the rocket icon hyperlinked to your R-universe in your social icons below your photo add the following code to the social section of content/authors/admin/_index.md (or the _index.md file for the relevant author), replacing username with the relevant user or organisation name.

social:
- icon: rocket
  icon_pack: fa
  link: https://username.r-universe.dev/