blob: 0829fba3ae2d4d83bae4814ea224cc277ee5072e [file] [log] [blame]
Avi Zivc175a0d2018-03-15 13:21:44 +02001#!/bin/sh
2
sebdetdf353be2020-09-21 22:13:05 +02003JAVA_OPTIONS="$JAVA_OPTIONS \
4 -Dcom.datastax.driver.USE_NATIVE_CLOCK=false \
5 -Dconfig.home=$JETTY_BASE/config \
6 -Dlog.home=$JETTY_BASE/logs \
7 -Dlogback.configurationFile=$JETTY_BASE/config/onboarding-be/logback.xml \
8 -Dconfiguration.yaml=$JETTY_BASE/config/onboarding-be/onboarding_configuration.yaml \
marine34532642021-06-18 17:51:46 +02009 -Dfeatures.properties=$JETTY_BASE/config/onboarding-be/features.properties \
vasraz4b978c92022-02-26 17:22:58 +000010 -XX:+HeapDumpOnOutOfMemoryError \
sebdetdf353be2020-09-21 22:13:05 +020011 -Dconfig.location=$JETTY_BASE/config/onboarding-be/."
12
13cd $JETTY_BASE
14
15cd $JETTY_BASE/chef-solo
Avi Zivc175a0d2018-03-15 13:21:44 +020016chef-solo -c solo.rb -E ${ENVNAME}
Avi Zivc175a0d2018-03-15 13:21:44 +020017
sebdetdf353be2020-09-21 22:13:05 +020018cd $JETTY_HOME
Avi Zivc175a0d2018-03-15 13:21:44 +020019
sebdetdf353be2020-09-21 22:13:05 +020020java $JAVA_OPTIONS -jar "${JETTY_HOME}/start.jar"