A package for adding a gitpod setup to a R package. This lets you add a complete gitpod Rstudio image to your package, with all dependencies.
Try it out here
To learn more about gitpod visit the gitpod home page.
Install from github:
remotes::install_github(repo = "kasperbrink/gitpodR")
This package has one main function create_gp_files
that takes three arguments,
FROM
, AS
, and rstudio
.
Example usage
create_gp_files(FROM = "rocker/tidyverse:latest", AS = NULL, rstudio = TRUE)
This adds a .gitpod.Dockerfile and .gitpod.yml to your package which will enable you to start it as a gitpod workspace.