forked from quarano/quarano-application
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest-evoila.yml
More file actions
48 lines (46 loc) · 1.58 KB
/
manifest-evoila.yml
File metadata and controls
48 lines (46 loc) · 1.58 KB
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
# App Manifest
applications:
############### test system #########################
- name: quarano-frontend-test
memory: 128M
buildpacks:
- https://github.com/cloudfoundry/staticfile-buildpack
path: ./frontend/dist/apps/quarano-frontend
command: "$HOME/boot.sh"
routes:
- route: quarano-frontend-test.cf.evoila.io
- name: quarano-backend-test
buildpacks:
- java_buildpack
path: ./backend/target/quarano-backend-0.0.1-SNAPSHOT.jar
env:
JBP_CONFIG_OPEN_JDK_JRE: "{ jre: { version: 11.+ } }"
SPRING_PROFILES_ACTIVE: prod, test
QUARANO_JWT_ALLOWED_ORIGINS: https://quarano-frontend-test.cf.evoila.io
SPRING_FLYWAY_BASELINE_ON_MIGRATE: true
SPRING_FLYWAY_BASELINE_VERSION: 0
############### Mannheim system #########################
- name: quarano-frontend
memory: 128M
buildpacks:
- https://github.com/cloudfoundry/staticfile-buildpack
path: ./frontend/dist/apps/quarano-frontend
command: "$HOME/boot.sh"
routes:
- route: quarano-frontend.cf.evoila.io
- route: mannheim.quarano.de
- name: quarano-backend
buildpacks:
- java_buildpack
path: ./backend/target/quarano-backend-0.0.1-SNAPSHOT.jar
services:
- database
routes:
- route: mannheim-api.quarano.de
env:
JBP_CONFIG_OPEN_JDK_JRE: "{ jre: { version: 11.+ } }"
SPRING_PROFILES_ACTIVE: prod
QUARANO_APP_HOST: mannheim.quarano.de
QUARANO_JWT_ALLOWED_ORIGINS: https://mannheim.quarano.de
SPRING_FLYWAY_BASELINE_ON_MIGRATE: true
SPRING_FLYWAY_BASELINE_VERSION: 0