-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.gitpod.yml
72 lines (67 loc) · 2.01 KB
/
.gitpod.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
# Commands to start on workspace startup
tasks:
- name: Run docker-compose services
command: docker-compose up
- name: Install dependencies and build project
before: yarn
init: yarn build
command: yarn watch
openMode: tab-after
- name: Jest
init: yarn test
command: yarn test --watch
openMode: split-right
- name: tailscaled
command: |
sudo tailscaled
openMode: tab-after
- name: tailscale
command: |
sudo -E tailscale up --hostname "gitpod-${GITPOD_WORKSPACE_ID}" \
--authkey "${TAILSCALE_AUTHKEY}"
openMode: split-right
experimentalNetwork: true
ports:
- port: 7474
onOpen: ignore
visibility: private
image:
file: .gitpod.Dockerfile
vscode:
extensions:
- ms-azuretools.vscode-docker
- adamwalzer.string-converter
- ahebrank.yaml2json
- bpruitt-goddard.mermaid-markdown-syntax-highlighting
- christian-kohler.npm-intellisense
- christian-kohler.path-intellisense
- codezombiech.gitignore
- CoenraadS.bracket-pair-colorizer-2
- cschleiden.vscode-github-actions
- dbaeumer.vscode-eslint
- dracula-theme.theme-dracula
- eamodio.gitlens
- EditorConfig.EditorConfig
- eg2.vscode-npm-script
- esbenp.prettier-vscode
- formulahendry.auto-close-tag
- GraphQL.vscode-graphql
- mikestead.dotenv
- mohsen1.prettify-json
- ms-vscode.js-debug-nightly
- ms-vscode.vscode-js-profile-flame
- naumovs.color-highlight
- PKief.material-icon-theme
- redhat.vscode-yaml
- streetsidesoftware.code-spell-checker
- VisualStudioExptTeam.vscodeintellicode
github:
prebuilds:
# enable for the default branch (defaults to true)
master: true
# enable for pull requests coming from this repo (defaults to true)
pullRequests: true
# add a "Review in Gitpod" button as a comment to pull requests (defaults to false)
addComment: true
# add a "Review in Gitpod" button to the pull request's description (defaults to false)
addBadge: true