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

Commit 390fe44

Browse files
author
Sean Hellum
committed
[docs] Kotlin in Gitpod
1 parent a99dd7d commit 390fe44

File tree

3 files changed

+33
-1
lines changed

3 files changed

+33
-1
lines changed

src/docs/languages-and-frameworks.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,5 @@ Below is a list of language and framework specific tips & tricks.
1717
- [Julia](/docs/languages/julia/)
1818
- [LaTeX](/docs/languages/latex/)
1919
- [R](/docs/languages/r/)
20-
- [Pandas](/docs/frameworks/pandas)
20+
- [Kotlin](/docs/kotlin-in-gitpod/)
21+
- [Pandas](/docs/frameworks/pandas/)

src/docs/languages/kotlin.md

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
# Kotlin in Gitpod
2+
3+
To work with Kotlin in Gitpod, you will need to properly configure your repository. Here is how to do it.
4+
5+
## Installing Kotlin
6+
7+
To install Kotlin in Gitpod add the following to your [.gitpod.Dockerfile](https://www.gitpod.io/docs/config-docker/)
8+
9+
```Dockerfile
10+
RUN brew install kotlin
11+
```
12+
13+
A full example could look like
14+
15+
```Dockerfile
16+
FROM gitpod/workspace-full
17+
18+
USER gitpod
19+
20+
RUN brew install kotlin
21+
```
22+
23+
## Try it
24+
25+
To see a basic repository with Kotlin support please see
26+
27+
[![Open in Gitpod](https://gitpod.io/button/open-in-gitpod.svg)](https://gitpod.io/#https://github.com/gitpod-io/Gitpod-Kotlin)

src/docs/menu.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -153,6 +153,10 @@ export const MENU: MenuEntry[] = [
153153
"R",
154154
"languages/r"
155155
),
156+
M(
157+
"Kotlin",
158+
"languages/kotlin"
159+
),
156160
M(
157161
"Pandas",
158162
"frameworks/pandas"

0 commit comments

Comments
 (0)