forked from chayxana/Restaurant-App
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitpod.yml
47 lines (37 loc) · 821 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
42
43
44
45
46
47
image:
file: .gitpod.Dockerfile
workspaceLocation: src/backend/backend.code-workspace
tasks:
- name: "Payment API"
before: |
cd src/backend/services/payment-api
init: |
go mod tidy
command: |
- name: "Cart API"
before: |
cd src/backend/services/cart-api
init: |
go mod tidy
- name: "Order API"
before: |
cd src/backend/services/order-api
init: |
mvn package
- name: "Checkout API"
before: |
cd src/backend/services/checkout-api
init: npm install
- name: "Catalog API"
before: |
cd src/backend/services/catalog-api
init:
cargo run build
- name: "Web App"
before:
cd src/backend/services/web-app
init: npm install
vscode:
extensions:
- golang.go
- vscjava.vscode-java-pack