-
Notifications
You must be signed in to change notification settings - Fork 181
Expand file tree
/
Copy pathdapr.yaml
More file actions
28 lines (28 loc) · 856 Bytes
/
dapr.yaml
File metadata and controls
28 lines (28 loc) · 856 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
version: 1
common:
resourcesPath: ./resources
apps:
- appID: order-orchestrator
appDirPath: ./go/order-orchestrator/
appPort: 50001
daprHTTPPort: 3505
daprGRPCPort: 50014
command: ["go", "run", "."]
- appID: payment-service
appDirPath: ./java/payment-service/
appPort: 50002
daprHTTPPort: 3506
daprGRPCPort: 50015
command: ["java", "-jar", "target/payment-service-1.0.0.jar"]
- appID: inventory-service
appDirPath: ./java/inventory-service/
appPort: 50003
daprHTTPPort: 3507
daprGRPCPort: 50016
command: ["java", "-jar", "target/inventory-service-1.0.0.jar"]
- appID: ai-recommendation-service
appDirPath: ./java/ai-recommendation-service/
appPort: 50004
daprHTTPPort: 3508
daprGRPCPort: 50017
command: ["java", "-jar", "target/ai-recommendation-service-1.0.0.jar"]