Skip to content

Commit 79f8581

Browse files
committed
Initial commit
0 parents  commit 79f8581

File tree

3 files changed

+46
-0
lines changed

3 files changed

+46
-0
lines changed

.gitignore

+26
Original file line numberDiff line numberDiff line change
@@ -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

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
FROM gitpod/workspace-full:latest
2+
3+
USER root
4+
5+
RUN wget http://downloads.dlang.org/releases/2.x/2.089.1/dmd_2.089.1-0_amd64.deb
6+
RUN sudo dpkg -i dmd_2.089.1-0_amd64.deb
7+
8+
USER gitpod
9+
# apply user-specific settings
10+
11+
# give back control
12+
USER root
13+

.gitpod.yml

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
image:
2+
file: .gitpod.Dockerfile
3+
4+
vscode:
5+
extensions:
6+
7+

0 commit comments

Comments
 (0)