forked from Suha652/e-commerce-microservices
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpm2.yaml
26 lines (23 loc) · 765 Bytes
/
pm2.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
# https://stackoverflow.com/a/42619477/581476
# https://pm2.keymetrics.io/docs/usage/application-declaration/
apps:
- name: api-gateway
cwd: src\ApiGateway\ECommerce.ApiGateway\ECommerce.ApiGateway\
script: dotnet
args: run
autorestart: false
- name: catalogs-service
cwd: src\Services\ECommerce.Services.Catalogs\ECommerce.Services.Catalogs.Api\
script: dotnet
args: run
autorestart: false
- name: customers-service
cwd: src\Services\ECommerce.Services.Customers\ECommerce.Services.Customers.Api\
script: dotnet
args: run
autorestart: false
- name: Identity-service
cwd: src\Services\ECommerce.Services.Identity\ECommerce.Services.Identity.Api\
script: dotnet
args: run
autorestart: false