f7b20c4ce27b946ebde8f2f7c542536a02d82999
[aai/model-loader.git] / src / main / bin / start.sh
1 #!/bin/sh
2 #*******************************************************************************
3 #  ============LICENSE_START==========================================
4 #  org.onap.aai
5 #  ===================================================================
6 #  Copyright © 2017-2018 AT&T Intellectual Property. All rights reserved.
7 #  Copyright © 2017-2018 Amdocs
8 #  ===================================================================
9 #  Licensed under the Apache License, Version 2.0 (the "License");
10 #  you may not use this file except in compliance with the License.
11 #  You may obtain a copy of the License at
12 #
13 #         http://www.apache.org/licenses/LICENSE-2.0
14 #
15 #  Unless required by applicable law or agreed to in writing, software
16 #  distributed under the License is distributed on an "AS IS" BASIS,
17 #  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18 #  See the License for the specific language governing permissions and
19 #  limitations under the License.
20 #  ============LICENSE_END============================================
21 #*******************************************************************************
22
23 BASEDIR="/opt/app/model-loader/"
24 AJSC_HOME="$BASEDIR"
25
26 if [ -z "$CONFIG_HOME" ]; then
27         echo "CONFIG_HOME must be set in order to start up process"
28         exit 1
29 fi
30
31 CLASSPATH="$AJSC_HOME/lib/*"
32 CLASSPATH="$CLASSPATH:$AJSC_HOME/extJars/"
33 CLASSPATH="$CLASSPATH:$AJSC_HOME/etc/"
34 PROPS="-DAJSC_HOME=$AJSC_HOME"
35 PROPS="$PROPS -DAJSC_CONF_HOME=$BASEDIR/bundleconfig/"
36 PROPS="$PROPS -Dlogback.configurationFile=$BASEDIR/bundleconfig/etc/logback.xml"
37 PROPS="$PROPS -DAJSC_SHARED_CONFIG=$AJSC_CONF_HOME"
38 PROPS="$PROPS -DAJSC_SERVICE_NAMESPACE=model-loader"
39 PROPS="$PROPS -DAJSC_SERVICE_VERSION=v1"
40 PROPS="$PROPS -Dserver.port=9500"
41 PROPS="$PROPS -DCONFIG_HOME=$CONFIG_HOME"
42 JVM_MAX_HEAP=${MAX_HEAP:-1024}
43
44 echo $CLASSPATH
45
46 exec java -Xmx${JVM_MAX_HEAP}m $PROPS -classpath $CLASSPATH com.att.ajsc.runner.Runner context=// port=9500