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 5828c54
Show file tree
Hide file tree
Showing 3 changed files with 33 additions and 1 deletion.
3 changes: 2 additions & 1 deletion 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/)
- [Pandas](/docs/frameworks/pandas)
- [Kotlin](/docs/kotlin-in-gitpod/)
- [Pandas](/docs/frameworks/pandas/)
27 changes: 27 additions & 0 deletions src/docs/languages/kotlin.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)
4 changes: 4 additions & 0 deletions src/docs/menu.ts
Original file line number Diff line number Diff line change
Expand Up @@ -149,6 +149,10 @@ export const MENU: MenuEntry[] = [
"R",
"languages/r"
),
M(
"Kotlin",
"languages/kotlin"
),
M(
"Pandas",
"frameworks/pandas"
Expand Down

0 comments on commit 5828c54

Please sign in to comment.