-
Notifications
You must be signed in to change notification settings - Fork 176
/
Copy pathdapr.yaml
38 lines (34 loc) · 1.13 KB
/
dapr.yaml
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
version: 1
common:
resourcesPath: ./components
apps:
# The order processing service receives orders and executes workflows
- appDirPath: ./services/orderprocessing/
appPort: 3000
command: ["python3", "app.py"]
appLogDestination: console
daprdLogDestination: console
# The notifications service receives pubsub notifications from workflow
- appDirPath: ./services/notifications
appPort: 3001
command: ["python3", "app.py"]
appLogDestination: console
daprdLogDestination: console
# The inventory service is invoked directly by order processing workflows
- appDirPath: ./services/inventory
appPort: 3002
command: ["python3", "app.py"]
appLogDestination: console
daprdLogDestination: console
# The payments service is invoked directly by order processing workflows
- appDirPath: ./services/payments
appPort: 3003
command: ["python3", "app.py"]
appLogDestination: console
daprdLogDestination: console
# The shipping service is invoked directly by order processing workflows
- appDirPath: ./services/shipping
appPort: 3004
command: ["python3", "app.py"]
appLogDestination: console
daprdLogDestination: console