forked from Microservice-API-Patterns/LakesideMutual
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.yml
48 lines (43 loc) · 1.49 KB
/
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
35
36
37
38
39
40
41
42
43
44
45
46
47
applications:
- name: customer-core
path: ./customer-core/target/customer-core-0.0.1-SNAPSHOT.jar
buildpacks:
- java_buildpack
health-check-type: port
memory: 768M
- name: customer-management-backend
path: ./customer-management-backend/target/customer-management-backend-0.0.1-SNAPSHOT.jar
buildpacks:
- java_buildpack
health-check-type: port
memory: 768M
env:
CUSTOMERCORE_BASEURL: http://customer-core.eu-gb.mybluemix.net
- name: customer-self-service-backend
path: ./customer-self-service-backend/target/customer-self-service-backend-0.0.1-SNAPSHOT.jar
buildpacks:
- java_buildpack
health-check-type: port
memory: 768M
env:
CUSTOMERCORE_BASEURL: http://customer-core.eu-gb.mybluemix.net
- name: customer-management-frontend
path: ./customer-management-frontend
buildpacks:
- nodejs_buildpack
health-check-type: http
memory: 512M
env:
OPTIMIZE_MEMORY: true
REACT_APP_CUSTOMER_SELF_SERVICE_BACKEND: http://customer-self-service-backend.eu-gb.mybluemix.net
REACT_APP_CUSTOMER_MANAGEMENT_BACKEND: http://customer-management-backend.eu-gb.mybluemix.net
- name: customer-self-service-frontend
path: ./customer-self-service-frontend
buildpacks:
- nodejs_buildpack
health-check-type: http
memory: 512M
env:
OPTIMIZE_MEMORY: true
REACT_APP_CUSTOMER_SELF_SERVICE_BACKEND: http://customer-self-service-backend.eu-gb.mybluemix.net
REACT_APP_CUSTOMER_MANAGEMENT_BACKEND: http://customer-management-backend.eu-gb.mybluemix.net