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

Commit

Permalink
[docs] Kotlin in Gitpod
Browse files Browse the repository at this point in the history
  • Loading branch information
Sean Hellum committed Mar 8, 2020
1 parent ea63be1 commit 585dffa
Show file tree
Hide file tree
Showing 3 changed files with 32 additions and 0 deletions.
27 changes: 27 additions & 0 deletions src/docs/kotlin-in-gitpod.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
# Kotlin in Gitpod

To work with Kotlin in Gitpod, you will need to properly configure your repository. Here is how to do it.

## Installing Kotlin

To install Kotlin in Gitpod add the following to your [.gitpod.Dockerfile](https://www.gitpod.io/docs/config-docker/)

```Dockerfile
RUN brew install kotlin
```

A full example could look like

```Dockerfile
FROM gitpod/workspace-full

USER gitpod

RUN brew install kotlin
```

## Try it

To see a basic repository with Kotlin support please see

[![Open in Gitpod](https://gitpod.io/button/open-in-gitpod.svg)](https://gitpod.io/#https://github.com/gitpod-io/Gitpod-Kotlin)
1 change: 1 addition & 0 deletions src/docs/languages-and-frameworks.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,3 +14,4 @@ Below is a list of language and framework specific tips & tricks.
* [Rust](/docs/rust-in-gitpod/)
* [Julia](/docs/julia-in-gitpod/)
* [R](/docs/r-in-gitpod/)
* [Kotlin](/docs/kotlin-in-gitpod)
4 changes: 4 additions & 0 deletions src/docs/menu.ts
Original file line number Diff line number Diff line change
Expand Up @@ -140,6 +140,10 @@ export const MENU: MenuEntry[] = [
M(
"R",
"r-in-gitpod"
),
M(
"Kotlin",
"kotlin-in-gitpod"
)
]
),
Expand Down

0 comments on commit 585dffa

Please sign in to comment.