#!/bin/bash # Start the local Mongo database mongod & # Start the text-generation-inference process text-generation-launcher --model-id ${MODEL_NAME} --num-shard 4 --port 8083 --trust-remote-code & # Wait for text-generation-inference to start curl --retry 80 --retry-delay 20 --retry-connrefused http://127.0.0.1:8083/health # Start the chat-ui process pm2 start /app/build/index.js -i $CPU_CORES --no-daemon & # Wait for any process to exit wait -n # Exit with status of process that exited first exit $?