-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathmanifest.yml
53 lines (53 loc) · 1.43 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
48
49
50
51
52
53
---
applications:
- name: backend-banking
path: backend-banking/target/backend-banking.jar
instances: 1
memory: 512M
env:
JAVA_OPTS: "-XX:ReservedCodeCacheSize=200M -Xss228K"
buildpacks:
- java_buildpack
routes:
- route: ((base_route))-backend-banking.cfapps.io
- name: backend-investments
path: backend-investments/target/backend-investments.jar
instances: 1
memory: 512M
env:
JAVA_OPTS: "-XX:ReservedCodeCacheSize=200M -Xss228K"
buildpacks:
- java_buildpack
routes:
- route: ((base_route))-backend-investments.cfapps.io
- name: backend-linesofcredit
path: backend-linesofcredit/target/backend-linesofcredit.jar
instances: 1
memory: 512M
env:
JAVA_OPTS: "-XX:ReservedCodeCacheSize=200M -Xss228K"
buildpacks:
- java_buildpack
routes:
- route: ((base_route))-backend-linesofcredit.cfapps.io
- name: web-gateway
path: ./web-gateway
command: node app.js
instances: 1
memory: 64M
buildpacks:
- nodejs_buildpack
routes:
- route: ((base_route))-web-gateway.cfapps.io
env:
backend_banking_url: http://((base_route))-backend-banking.cfapps.io
backend_investments_url: http://((base_route))-backend-investments.cfapps.io
backend_linesofcredit_url: http://((base_route))-backend-linesofcredit.cfapps.io
- name: web-gui
path: ./web-gui/build
instances: 1
memory: 64M
buildpacks:
- staticfile_buildpack
routes:
- route: ((base_route))-web-gui.cfapps.io