blob: 90d270704b3bc0c4c811816c6a982f37d68ab275 [file] [log] [blame]
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
red=$(tput setaf 1)
green=$(tput setaf 2)
reset=$(tput sgr0)
skipCompilation=false
while getopts s flag
do
case "${flag}" in
s) skipCompilation=true;;
*) exit 1
esac
done
if ! $skipCompilation
then
echo "${green}Compiling Services...${reset}"
bash scripts/build-services.sh
echo "${green}Services compiled.${reset}"
echo "${green}Compiling GUI...${reset}"
cd gui && yarn install && ng build --configuration production --deploy-url=/ --base-href=/
echo "${green}GUI compiled.${reset}"
echo
cd ..
fi
echo "${green}Starting TexeraWebApplication in daemon...${reset}"
setsid nohup ./scripts/server.sh >/dev/null 2>&1 &
echo "${green}Waiting TexeraWebApplication to launch on 8080...${reset}"
while ! nc -z localhost 8080; do
sleep 0.1 # wait 100ms before check again
done
echo "${green}TexeraWebApplication launched at $(pgrep -f TexeraWebApplication)${reset}"
echo
echo "${green}Starting WorkflowCompilingService in daemon...${reset}"
setsid nohup ./scripts/workflow-compiling-service.sh >/dev/null 2>&1 &
echo "${green}Waiting TexeraWorkflowCompilingService to launch on 9090...${reset}"
while ! nc -z localhost 9090; do
sleep 0.1 # wait 100ms before check again
done
echo "${green}WorkflowCompilingService launched at $(pgrep -f TexeraWorkflowCompilingService)${reset}"
echo
echo "${green}Starting FileService in daemon...${reset}"
setsid nohup ./scripts/file-service.sh >/dev/null 2>&1 &
echo "${green}Waiting FileService to launch on 9092...${reset}"
while ! nc -z localhost 9092; do
sleep 0.1 # wait 100ms before check again
done
echo "${green}FileService launched at $(pgrep -f FileService)${reset}"
echo
echo "${green}Starting ConfigService in daemon...${reset}"
setsid nohup ./scripts/config-service.sh >/dev/null 2>&1 &
echo "${green}Waiting ConfigService to launch on 9094...${reset}"
while ! nc -z localhost 9094; do
sleep 0.1 # wait 100ms before check again
done
echo "${green}ConfigService launched at $(pgrep -f ConfigService)${reset}"
echo
echo "${green}Starting ComputingUnitManagingService in daemon...${reset}"
setsid nohup ./scripts/computing-unit-managing-service.sh >/dev/null 2>&1 &
echo "${green}Waiting ComputingUnitManagingService to launch on 8888...${reset}"
while ! nc -z localhost 8888; do
sleep 0.1 # wait 100ms before check again
done
echo "${green}ComputingUnitManagingService launched at $(pgrep -f ComputingUnitManagingService)${reset}"
echo
echo "${green}Starting WorkflowComputingUnit in daemon...${reset}"
setsid nohup ./scripts/workflow-computing-unit.sh >/dev/null 2>&1 &
echo "${green}Waiting WorkflowComputingUnit to launch on 8085...${reset}"
while ! nc -z localhost 8085; do
sleep 0.1 # wait 100ms before check again
done
echo "${green}WorkflowComputingUnit launched at $(pgrep -f WorkflowComputingUnit)${reset}"
echo
echo "${green}Starting shared editing server...${reset}"
setsid nohup ./scripts/shared-editing-server.sh >/dev/null 2>&1 &
sleep 2
echo "${green}Shared Editing Server launched at $(pgrep -f y-websocket)${reset}"