https://github.com/cynkra/cynkrathis
Bootstrapping cynkra client projects
https://github.com/cynkra/cynkrathis
Last synced: 12 days ago
JSON representation
Bootstrapping cynkra client projects
- Host: GitHub
- URL: https://github.com/cynkra/cynkrathis
- Owner: cynkra
- License: other
- Created: 2020-09-17T15:10:51.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2025-04-09T04:17:03.000Z (16 days ago)
- Last Synced: 2025-04-12T20:12:23.640Z (12 days ago)
- Language: R
- Homepage: https://cynkrathis.cynkra.com
- Size: 8.83 MB
- Stars: 5
- Watchers: 10
- Forks: 2
- Open Issues: 4
-
Metadata Files:
- Readme: README.Rmd
- Changelog: NEWS.md
- Contributing: .github/CONTRIBUTING.md
- License: LICENSE
- Code of conduct: .github/CODE_OF_CONDUCT.md
- Support: .github/SUPPORT.md
Awesome Lists containing this project
- jimsghstars - cynkra/cynkrathis - Bootstrapping cynkra client projects (R)
README
---
output: github_document
---```{r, include = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "man/figures/README-",
out.width = "100%"
)
options(width = 180)
```[](https://github.com/cynkra/cynkrathis/actions)
[](https://codecov.io/github/cynkra/cynkrathis?branch=main)
[](https://www.r-pkg.org/badges/version/cynkrathis)
[](https://lifecycle.r-lib.org/articles/stages.html#experimental)
[](https://www.codefactor.io/repository/github/cynkra/cynkrathis)# cynkrathis
Package to simplify project scaffolding and common {renv} related tasks.
## cynkra RSPM snapshots
cynkra makes use of certain RStudio Package Manager (RSPM) snapshots across projects.
Usually each R Version is tied to a snapshot near it's release date.
If a snapshot is considered unstable due to certain R package version clashes, additional snapshots for specific R versions can be listed.```{r }
head(cynkrathis::get_snapshots(), 10)
```## Initialize {renv} with a given RSPM snapshot
By default `init_renv()` will select the `"recommended"` snapshot of the R version which is currently used.
```{r, eval=FALSE}
cynkrathis::init_renv()
```## Miscellaneous helpers
See the grouped [pkgdown reference](https://cynkrathis.cynkra.com/reference/index.html).