Skip to content
This repository has been archived by the owner on Apr 19, 2021. It is now read-only.

Commit

Permalink
[docs] R in Gitpod
Browse files Browse the repository at this point in the history
  • Loading branch information
Sean Hellum committed Feb 12, 2020
1 parent bb7312c commit afe2385
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/docs/languages-and-frameworks.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,3 +11,4 @@ Below is a list of language and framework specific tips & tricks.
* [PHP](/docs/php-in-gitpod)
* [Rust](/docs/rust-in-gitpod/)
* [Julia](/docs/julia-in-gitpod/)
* [R](/docs/r-in-gitpod/)
4 changes: 4 additions & 0 deletions src/docs/menu.ts
Original file line number Diff line number Diff line change
Expand Up @@ -123,6 +123,10 @@ export const MENU: MenuEntry[] = [
M(
"Julia",
"julia-in-gitpod"
),
M(
"R",
"r-in-gitpod"
)
]
),
Expand Down
25 changes: 25 additions & 0 deletions src/docs/r-in-gitpod.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
# R in Gitpod

Gitpod does not come with out of the box support for R, so here is how to configure it

## Installing R

First you'll probably want to install R, to do this add the following to your [`.gitpod.Dockerfile`](https://www.gitpod.io/docs/config-docker/)

```Dockerfile
RUN brew install R
```

This will install R to your project!


## VSCode Extensions

### R Extension
![](images/RGitpod.png)
To install the R extension to your repository add the following to your [`.gitpod.yml`](https://www.gitpod.io/docs/config-gitpod-file/):
```yaml
vscode:
extensions:
- [email protected]:z5vr1v1bfS++U/aHLSXQ6Q==
```

0 comments on commit afe2385

Please sign in to comment.