R-universe does not read registry files from this package repository. It expects a separate GitHub repository under the same account.
Registry Repository
The public R-universe registry repository is:
SidRichardsQuantum/sidrichardsquantum.r-universe.dev
Its root-level packages.json file should contain:
[
{
"package": "CelestialDynamicsIterationMethods",
"url": "https://github.com/SidRichardsQuantum/Celestial_Dynamics_Iteration_Methods"
}
]
Install the R-universe GitHub app for the SidRichardsQuantum account:
https://github.com/apps/r-universe
R-universe should create and build the universe within about an hour. Build status and package pages should appear at:
https://sidrichardsquantum.r-universe.dev
https://sidrichardsquantum.r-universe.dev/CelestialDynamicsIterationMethods
Install Command
Once the package has built, users can install it with:
options(repos = c(
sidrichardsquantum = "https://sidrichardsquantum.r-universe.dev",
CRAN = "https://cloud.r-project.org"
))
install.packages("CelestialDynamicsIterationMethods")
Maintenance Notes
- R-universe tracks the default branch unless a
branchfield is added to - The
packagevalue must match thePackage:field inDESCRIPTION. - If the package ever moves into a subdirectory, add a
subdirfield. - Keep
URLandBugReportsinDESCRIPTIONpointed at the canonical GitHub
packages.json.
repository so package metadata renders correctly.