Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jimbrig/buildtools
Tools for isolating, detecting dependencies, scaffolding, and building deployable, reproducible developer environments in R.
https://github.com/jimbrig/buildtools
build-tool configuration containers deployment docker environment r-package reproducibility rstats shiny-apps
Last synced: 29 days ago
JSON representation
Tools for isolating, detecting dependencies, scaffolding, and building deployable, reproducible developer environments in R.
- Host: GitHub
- URL: https://github.com/jimbrig/buildtools
- Owner: jimbrig
- License: other
- Created: 2021-01-24T00:38:41.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2023-06-09T00:56:17.000Z (over 1 year ago)
- Last Synced: 2024-08-13T07:12:01.169Z (4 months ago)
- Topics: build-tool, configuration, containers, deployment, docker, environment, r-package, reproducibility, rstats, shiny-apps
- Language: R
- Homepage: http://docs.jimbrig.com/buildtools/
- Size: 447 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.Rmd
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
- jimsghstars - jimbrig/buildtools - Tools for isolating, detecting dependencies, scaffolding, and building deployable, reproducible developer environments in R. (R)
README
---
output: github_document
---```{r, include = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "man/figures/README-",
out.width = "100%"
)
```# buildtools
[![Lifecycle: experimental](https://img.shields.io/badge/lifecycle-experimental-orange.svg)](https://www.tidyverse.org/lifecycle/#experimental)
[![Project Status: WIP](https://www.repostatus.org/badges/latest/wip.svg)](http://www.repostatus.org/#wip)
[![Codecov test coverage](https://codecov.io/gh/jimbrig/buildtools/branch/main/graph/badge.svg)](https://app.codecov.io/gh/jimbrig/buildtools?branch=main)
[![check](https://github.com/jimbrig/buildtools/actions/workflows/check.yml/badge.svg)](https://github.com/jimbrig/buildtools/actions/workflows/check.yml)
[![changelog](https://github.com/jimbrig/buildtools/actions/workflows/changelog.yml/badge.svg)](https://github.com/jimbrig/buildtools/actions/workflows/changelog.yml)
[![check-release](https://github.com/jimbrig/buildtools/actions/workflows/check-release.yaml/badge.svg)](https://github.com/jimbrig/buildtools/actions/workflows/check-release.yaml)
[![coverage](https://github.com/jimbrig/buildtools/actions/workflows/coverage.yml/badge.svg)](https://github.com/jimbrig/buildtools/actions/workflows/coverage.yml)
[![document](https://github.com/jimbrig/buildtools/actions/workflows/document.yml/badge.svg)](https://github.com/jimbrig/buildtools/actions/workflows/document.yml)
[![lint](https://github.com/jimbrig/buildtools/actions/workflows/lint.yml/badge.svg)](https://github.com/jimbrig/buildtools/actions/workflows/lint.yml)
[![pkgdown](https://github.com/jimbrig/buildtools/actions/workflows/pkgdown.yml/badge.svg)](https://github.com/jimbrig/buildtools/actions/workflows/pkgdown.yml)
[![style](https://github.com/jimbrig/buildtools/actions/workflows/style.yml/badge.svg)](https://github.com/jimbrig/buildtools/actions/workflows/style.yml)
[![pkgdown](https://github.com/jimbrig/buildtools/actions/workflows/pkgdown.yaml/badge.svg)](https://github.com/jimbrig/buildtools/actions/workflows/pkgdown.yaml)The goal of buildtools is to ...
## Installation
You can install the released version of buildtools from [CRAN](https://CRAN.R-project.org) with:
``` r
install.packages("buildtools")
```And the development version from [GitHub](https://github.com/) with:
``` r
# install.packages("devtools")
devtools::install_github("jimbrig/buildtools")
```
## ExampleThis is a basic example which shows you how to solve a common problem:
```{r example}
# library(buildtools)
## basic example code
```