This repository was archived by the owner on Apr 19, 2021. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +33
-1
lines changed Expand file tree Collapse file tree 3 files changed +33
-1
lines changed Original file line number Diff line number Diff line change @@ -17,4 +17,5 @@ Below is a list of language and framework specific tips & tricks.
17
17
- [ Julia] ( /docs/languages/julia/ )
18
18
- [ LaTeX] ( /docs/languages/latex/ )
19
19
- [ R] ( /docs/languages/r/ )
20
- - [ Pandas] ( /docs/frameworks/pandas )
20
+ - [ Kotlin] ( /docs/kotlin-in-gitpod/ )
21
+ - [ Pandas] ( /docs/frameworks/pandas/ )
Original file line number Diff line number Diff line change
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 )
Original file line number Diff line number Diff line change @@ -153,6 +153,10 @@ export const MENU: MenuEntry[] = [
153
153
"R" ,
154
154
"languages/r"
155
155
) ,
156
+ M (
157
+ "Kotlin" ,
158
+ "languages/kotlin"
159
+ ) ,
156
160
M (
157
161
"Pandas" ,
158
162
"frameworks/pandas"
You can’t perform that action at this time.
0 commit comments