-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy path.gitpod.yml
More file actions
35 lines (32 loc) · 807 Bytes
/
.gitpod.yml
File metadata and controls
35 lines (32 loc) · 807 Bytes
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
image:
file: .gitpod.Dockerfile
ports:
- port: 3007
onOpen: open-preview
visibility: public
- port: 4000
onOpen: open-browser
visibility: public
- port: 3006
onOpen: ignore
visibility: public
- port: 8080
onOpen: ignore
visibility: public
vscode:
extensions:
- ms-azuretools.vscode-docker
- graphql.vscode-graphql
- yzhang.markdown-all-in-one
- ms-vscode.vscode-typescript-tslint-plugin
- hediet.vscode-drawio
- ms-azuretools.vscode-docker
tasks:
- init: |
./ensure-node-version.sh
. ~/.nvm/nvm.sh && nvm use
./prebuild.sh | tee gitpod-prebuild.log.txt
- command: |
./ensure-node-version.sh
. ~/.nvm/nvm.sh && nvm use
./wait-for-prebuild.sh && (npm run gitpod-start | tee gitpod-start.log.txt);