Skip to content

Latest commit

 

History

History
26 lines (18 loc) · 795 Bytes

README.md

File metadata and controls

26 lines (18 loc) · 795 Bytes

gitpodR

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

Open in Gitpod

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.