24 lines
595 B
YAML
24 lines
595 B
YAML
version: 1
|
|
common:
|
|
resourcesPath: ./components
|
|
env:
|
|
ASPNETCORE_ENVIRONMENT: Development
|
|
apps:
|
|
- appID: api-gateway
|
|
appDirPath: ../ApiGateway/LingAdmin.ApiGateway
|
|
appPort: 5000
|
|
daprHTTPPort: 3500
|
|
command: ["dotnet", "run"]
|
|
|
|
- appID: identity-service
|
|
appDirPath: ../IdentityService/LingAdmin.IdentityService
|
|
appPort: 5001
|
|
daprHTTPPort: 3501
|
|
command: ["dotnet", "run"]
|
|
|
|
- appID: authorization-service
|
|
appDirPath: ../AuthorizationService/LingAdmin.AuthorizationService
|
|
appPort: 5002
|
|
daprHTTPPort: 3502
|
|
command: ["dotnet", "run"]
|