-
-
Notifications
You must be signed in to change notification settings - Fork 334
/
.gitpod.yml
41 lines (35 loc) · 796 Bytes
/
.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
---
image:
file: Dockerfile
tasks:
- name: Yarn install
init: yarn install
command: sleep 1 && gp sync-done yarn-install
- name: Yarn App Server
init: echo "Starting app server"
command: |
gp sync-await yarn-install &&
yarn dev
vscode:
extensions:
- kimlimjustin.jsdoc-generator
- esbenp.prettier-vscode
- orta.vscode-jest
# Ports config
ports:
- port: 3000
onOpen: open-preview
- port: 6080
onOpen: open-browser
- port: 5900
onOpen: ignore
# GitHub Prebuilds
github:
prebuilds:
master: true
branches: true
pullRequests: true
pullRequestsFromForks: true
addComment: false
addBadge: true
addLabel: prebuilt-in-gitpod