-
Notifications
You must be signed in to change notification settings - Fork 136
/
Copy pathmanifest.yml
34 lines (34 loc) · 923 Bytes
/
manifest.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
---
applications:
- name: mploed-credit-agency
memory: 1024M
instances: 1
path: ./credit-agency/target/credit-agency-0.1.0.jar
- name: mploed-customer
memory: 1024M
path: ./customer/target/customer-0.1.0.jar
services:
- mysql-customer
- redis-pubsub
- name: mploed-customer-contact
memory: 1024M
instances: 1
path: ./customer-contact/target/customer-contact-0.1.0.jar
services:
- mysql-customer-contact
- redis-pubsub
- name: mploed-scoring
memory: 1024M
path: scoring/target/scoring-0.1.0.jar
env:
creditAgencyServer: https://mploed-credit-agency.cfapps.io/
- name: mploed-credit-application
memory: 1024M
timeout: 180
path: ./credit-application/target/credit-application-0.1.0.jar
services:
- mysql-credit-application
- redis-pubsub
env:
scoringServer: https://mploed-scoring.cfapps.io/
customerServer: https://mploed-customer.cfapps.io/