diff options
author | da490c <dave.adams@amdocs.com> | 2018-07-17 14:04:07 -0400 |
---|---|---|
committer | da490c <dave.adams@amdocs.com> | 2018-07-17 14:12:36 -0400 |
commit | f42670da77dabfb638c6b180ac7133ec869ecc69 (patch) | |
tree | f788f5ab8461f1f7a72089d31673e7ec11bb7902 /sparkybe-onap-application/src/main/scripts/start.sh | |
parent | 6977125bf359dbea3533052007930b18fa988976 (diff) |
Implement Spring Profile Sparky Config
Issue-ID: AAI-1379
Change-Id: I5d56b766f681452abe7e61b307e008bc5a695814
Signed-off-by: da490c <dave.adams@amdocs.com>
Diffstat (limited to 'sparkybe-onap-application/src/main/scripts/start.sh')
-rw-r--r-- | sparkybe-onap-application/src/main/scripts/start.sh | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/sparkybe-onap-application/src/main/scripts/start.sh b/sparkybe-onap-application/src/main/scripts/start.sh index a8eba46..c16c9b2 100644 --- a/sparkybe-onap-application/src/main/scripts/start.sh +++ b/sparkybe-onap-application/src/main/scripts/start.sh @@ -1,11 +1,17 @@ #!/bin/sh APP_HOME="/opt/app/sparky" -CONFIG_HOME=${APP_HOME}/appconfig +CONFIG_HOME=${APP_HOME}/config PROPS="-DAPP_HOME=${APP_HOME} -DCONFIG_HOME=${CONFIG_HOME} -Dlogging.config=${CONFIG_HOME}/logging/logback.xml" set -x jar ufv ${APP_HOME}/lib/sparkybe-onap-application*.jar -C ${CONFIG_HOME}/portal/ BOOT-INF/classes/portal.properties + +# +# change the working directory so that Spring-Boot will pick up the config folder from the right path +# +cd $APP_HOME + java -Xms1024m -Xmx4096m $PROPS -jar ${APP_HOME}/lib/sparkybe-onap-application*.jar |