-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
.gitpod.yml
39 lines (36 loc) · 900 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
# List the start up tasks. Learn more https://www.gitpod.io/docs/config-start-tasks/
image:
file: .gitpod.Dockerfile
tasks:
- name: Docker Services
init: docker-compose -f docker/docker-compose.dev.yml pull
command: |
docker-compose -f docker/docker-compose.dev.yml up
- name: Dev
init: |
npm run bootstrap
cd docs
yarn
command: |
npm run watch
# List the ports to expose. Learn more https://www.gitpod.io/docs/config-ports/
ports:
- port: 3000
onOpen: open-browser
- port: 3001
onOpen: open-browser
- port: 3002
onOpen: ignore
- port: 3003
onOpen: ignore
- port: 27017
onOpen: ignore
- port: 6379
onOpen: ignore
- port: 9125
onOpen: ignore
vscode:
extensions:
- octref.vetur
- orta.vscode-jest
- eamodio.gitlens