-
Notifications
You must be signed in to change notification settings - Fork 212
/
services.yml
41 lines (41 loc) · 1.27 KB
/
services.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
apps:
- name: api
script: dotnet run
cwd: ../Pacco.APIGateway/src/Pacco.APIGateway
max_restarts: 3
- name: availability
script: dotnet run
cwd: ../Pacco.Services.Availability/src/Pacco.Services.Availability.Api
max_restarts: 3
- name: customers
script: dotnet run
cwd: ../Pacco.Services.Customers/src/Pacco.Services.Customers.Api
max_restarts: 3
- name: deliveries
script: dotnet run
cwd: ../Pacco.Services.Deliveries/src/Pacco.Services.Deliveries.Api
max_restarts: 3
- name: identity
script: dotnet run
cwd: ../Pacco.Services.Identity/src/Pacco.Services.Identity.Api
max_restarts: 3
- name: operations
script: dotnet run
cwd: ../Pacco.Services.Operations/src/Pacco.Services.Operations.Api
max_restarts: 3
- name: orders
script: dotnet run
cwd: ../Pacco.Services.Orders/src/Pacco.Services.Orders.Api
max_restarts: 3
- name: parcels
script: dotnet run
cwd: ../Pacco.Services.Parcels/src/Pacco.Services.Parcels.Api
max_restarts: 3
- name: pricing
script: dotnet run
cwd: ../Pacco.Services.Pricing/src/Pacco.Services.Pricing.Api
max_restarts: 3
- name: vehicles
script: dotnet run
cwd: ../Pacco.Services.Vehicles/src/Pacco.Services.Vehicles.Api
max_restarts: 3