-
Notifications
You must be signed in to change notification settings - Fork 391
/
.gitpod.yml
51 lines (50 loc) · 1.32 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
image:
file: .gitpod.Dockerfile
# List the ports you want to expose and what to do when they are served. See https://www.gitpod.io/docs/config-ports/
ports:
- port: 5000
onOpen: ignore
visibility: public
- port: 3000
onOpen: ignore
visibility: public
- port: 6379
onOpen: ignore
- port: 27017
onOpen: ignore
- port: 3100 # Creator
onOpen: open-browser
visibility: public
- port: 16686 # Jaeger UI
onOpen: open-browser
visibility: public
- port: 5432
onOpen: ignore
visibility: public
- port: 80
onOpen: ignore
visibility: public
# List the start up tasks. You can start them in parallel in multiple terminals. See https://www.gitpod.io/docs/config-start-tasks/
tasks:
- name: Docker
command: |
echo "ROOT_URL=$(gp url 5000)" >> .env.local
echo "METADATA_SERVER=$(gp url 5000)" >> .env.local
echo "ROOT_URL=$(gp url 80)" >> deploy/enterprise/.env
yarn docker:db
- name: Steedos
init: |
yarn
command: |
git config pull.rebase false
rm creator/.env.local
cp creator/.env creator/.env.local
sed -i "/^ROOT_URL=*/cROOT_URL=$(gp url 3100)" creator/.env.local
yarn install
yarn build
gp await-port 27017
gp await-port 6379
yarn start
vscode:
extensions:
- dbaeumer.vscode-eslint