-
Notifications
You must be signed in to change notification settings - Fork 0
/
dapr.yaml
24 lines (24 loc) · 883 Bytes
/
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
version: 1
common: # optional section for variables shared across apps
resourcesPath: ./app/components # any dapr resources to be shared across apps
env: # any environment variable shared across apps
- DEBUG: true
apps:
- appID: Scheduler # optional
appDirPath: .dapr/scheduler/ # REQUIRED
#resourcesPath: .dapr/resources # (optional) can be default by convention
#configFilePath: .dapr/config.yaml # (optional) can be default by convention too, ignore if file is not found.
appProtocol: GRPC
appPort: 3000
appHealthCheckPath: "/healthz"
command: ["run"]
- appID: Monitor # optional
appDirPath: .dapr/monitor/ # REQUIRED
appProtocol: GRPC
appPort: 3001
command: ["run"]
- appID: Fanout # optional
appDirPath: .dapr/fanout/ # REQUIRED
appProtocol: GRPC
appPort: 3002
command: ["run"]