Skip to content

Commit 4757261

Browse files
committed
chore: add gitpod config
1 parent 9380ecc commit 4757261

File tree

2 files changed

+24
-0
lines changed

2 files changed

+24
-0
lines changed

.gitpod.Dockerfile

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
FROM gitpod/workspace-full
2+
3+
RUN curl -fsSL https://deno.land/x/install/install.sh | sh
4+
RUN /home/gitpod/.deno/bin/deno completions bash > /home/gitpod/.bashrc.d/90-deno && echo 'export DENO_INSTALL="/home/gitpod/.deno"' >> /home/gitpod/.bashrc.d/90-deno && echo 'export PATH="$DENO_INSTALL/bin:$PATH"' >> /home/gitpod/.bashrc.d/90-deno

.gitpod.yml

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
image:
2+
file: .gitpod.Dockerfile
3+
4+
github:
5+
prebuilds:
6+
# enable for the default branch (defaults to true)
7+
master: true
8+
# enable for all branches in this repo (defaults to false)
9+
branches: true
10+
# enable for pull requests coming from this repo (defaults to true)
11+
pullRequests: true
12+
# enable for pull requests coming from forks (defaults to false)
13+
pullRequestsFromForks: true
14+
# add a check to pull requests (defaults to true)
15+
addCheck: true
16+
# add a "Review in Gitpod" button as a comment to pull requests (defaults to false)
17+
addComment: true
18+
# add a "Review in Gitpod" button to the pull request's description (defaults to false)
19+
addBadge: false
20+

0 commit comments

Comments
 (0)