We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
0 parents commit 79f8581Copy full SHA for 79f8581
.gitignore
@@ -0,0 +1,26 @@
1
+# Compiled Object files
2
+*.o
3
+*.obj
4
+
5
+# Compiled Dynamic libraries
6
+*.so
7
+*.dylib
8
+*.dll
9
10
+# Compiled Static libraries
11
+*.a
12
+*.lib
13
14
+# Executables
15
+*.exe
16
17
+# DUB
18
+.dub
19
+docs.json
20
+__dummy.html
21
+docs/
22
+*-test-*
23
24
+# Code coverage
25
+*.lst
26
.gitpod.Dockerfile
@@ -0,0 +1,13 @@
+FROM gitpod/workspace-full:latest
+USER root
+RUN wget http://downloads.dlang.org/releases/2.x/2.089.1/dmd_2.089.1-0_amd64.deb
+RUN sudo dpkg -i dmd_2.089.1-0_amd64.deb
+USER gitpod
+# apply user-specific settings
+# give back control
.gitpod.yml
@@ -0,0 +1,7 @@
+image:
+ file: .gitpod.Dockerfile
+vscode:
+ extensions:
+ - [email protected]
0 commit comments