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 Apr 13, 2020
1 parent f6dbe95 commit 9ede4af
Show file tree
Hide file tree
Showing 2 changed files with 28 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 @@ -16,4 +16,5 @@ Below is a list of language and framework specific tips & tricks.
- [.NET](/docs/languages/dotnet/)
- [Julia](/docs/languages/julia/)
- [R](/docs/languages/r/)
- [Kotlin](/docs/kotlin-in-gitpod)
- [Pandas](/docs/frameworks/pandas)

0 comments on commit 9ede4af

Please sign in to comment.