[improvement] alter script (#82)

This commit is contained in:
mainmain
2023-09-13 14:02:02 +08:00
committed by GitHub
parent 12417c66cd
commit ef30e7a5b8
2 changed files with 13 additions and 13 deletions

View File

@@ -15,8 +15,8 @@ mvn -f $baseDir/../ clean package -DskipTests
#2. move package to build #2. move package to build
cp $baseDir/../launchers/standalone/target/*.tar.gz ${buildDir}/supersonic.tar.gz cp $baseDir/../launchers/standalone/target/*.tar.gz ${buildDir}/supersonic.tar.gz
cp $baseDir/../launchers/semantic/target/*.tar.gz ${buildDir}/supersonic-semantic.tar.gz #cp $baseDir/../launchers/semantic/target/*.tar.gz ${buildDir}/supersonic-semantic.tar.gz
cp $baseDir/../launchers/chat/target/*.tar.gz ${buildDir}/supersonic-chat.tar.gz #cp $baseDir/../launchers/chat/target/*.tar.gz ${buildDir}/supersonic-chat.tar.gz
#3. build webapp #3. build webapp

View File

@@ -17,21 +17,21 @@ if [[ "$service" == "semantic" || -z "$service" ]] && [ "$command" != "stop" ]
#2. package lib #2. package lib
tar -zxvf ${buildDir}/supersonic.tar.gz -C ${runtimeDir} tar -zxvf ${buildDir}/supersonic.tar.gz -C ${runtimeDir}
tar -zxvf ${buildDir}/supersonic-chat.tar.gz -C ${runtimeDir} # tar -zxvf ${buildDir}/supersonic-chat.tar.gz -C ${runtimeDir}
tar -zxvf ${buildDir}/supersonic-semantic.tar.gz -C ${runtimeDir} # tar -zxvf ${buildDir}/supersonic-semantic.tar.gz -C ${runtimeDir}
mv ${runtimeDir}/launchers-standalone-* ${runtimeDir}/supersonic-standalone mv ${runtimeDir}/launchers-standalone-* ${runtimeDir}/supersonic-standalone
mv ${runtimeDir}/launchers-chat-* ${runtimeDir}/supersonic-chat # mv ${runtimeDir}/launchers-chat-* ${runtimeDir}/supersonic-chat
mv ${runtimeDir}/launchers-semantic-* ${runtimeDir}/supersonic-semantic # mv ${runtimeDir}/launchers-semantic-* ${runtimeDir}/supersonic-semantic
tar -zxvf ${buildDir}/supersonic-webapp.tar.gz -C ${buildDir} tar -zxvf ${buildDir}/supersonic-webapp.tar.gz -C ${buildDir}
mkdir -p ${runtimeDir}/supersonic-semantic/webapp # mkdir -p ${runtimeDir}/supersonic-semantic/webapp
mkdir -p ${runtimeDir}/supersonic-chat/webapp # mkdir -p ${runtimeDir}/supersonic-chat/webapp
mkdir -p ${runtimeDir}/supersonic-standalone/webapp mkdir -p ${runtimeDir}/supersonic-standalone/webapp
cp -fr ${buildDir}/supersonic-webapp/* ${runtimeDir}/supersonic-semantic/webapp # cp -fr ${buildDir}/supersonic-webapp/* ${runtimeDir}/supersonic-semantic/webapp
cp -fr ${buildDir}/supersonic-webapp/* ${runtimeDir}/supersonic-chat/webapp # cp -fr ${buildDir}/supersonic-webapp/* ${runtimeDir}/supersonic-chat/webapp
cp -fr ${buildDir}/supersonic-webapp/* ${runtimeDir}/supersonic-standalone/webapp cp -fr ${buildDir}/supersonic-webapp/* ${runtimeDir}/supersonic-standalone/webapp
rm -fr ${buildDir}/supersonic-webapp rm -fr ${buildDir}/supersonic-webapp
@@ -63,7 +63,7 @@ case "$command" in
elif [[ -z "$service" ]]; then elif [[ -z "$service" ]]; then
echo -e "Starting supersonic" echo -e "Starting supersonic"
sh ${runtimeDir}/supersonic-standalone/bin/service.sh start sh ${runtimeDir}/supersonic-standalone/bin/service.sh start
sh ${runtimeDir}/supersonic-chat/llm/bin/service.sh start sh ${runtimeDir}/supersonic-standalone/llm/bin/service.sh start
else else
echo "Use command {semantic|semantic||} to run." echo "Use command {semantic|semantic||} to run."
fi fi
@@ -81,7 +81,7 @@ case "$command" in
elif [[ -z "$service" ]]; then elif [[ -z "$service" ]]; then
echo -e "Stopping supersonic" echo -e "Stopping supersonic"
sh ${runtimeDir}/supersonic-standalone/bin/service.sh stop sh ${runtimeDir}/supersonic-standalone/bin/service.sh stop
sh ${runtimeDir}/supersonic-chat/llm/bin/service.sh stop sh ${runtimeDir}/supersonic-standalone/llm/bin/service.sh stop
else else
echo "Use command {semantic|semantic||} to run." echo "Use command {semantic|semantic||} to run."
fi fi
@@ -99,7 +99,7 @@ case "$command" in
elif [[ -z "$service" ]]; then elif [[ -z "$service" ]]; then
echo -e "Restarting supersonic" echo -e "Restarting supersonic"
sh ${runtimeDir}/supersonic-standalone/bin/service.sh restart sh ${runtimeDir}/supersonic-standalone/bin/service.sh restart
sh ${runtimeDir}/supersonic-chat/llm/bin/service.sh restart sh ${runtimeDir}/supersonic-standalone/llm/bin/service.sh restart
else else
echo "Use command {semantic|semantic||} to run." echo "Use command {semantic|semantic||} to run."
fi fi