Merge branch 'main' into fix/suspense-loader

This commit is contained in:
Ankit Nayan 2021-06-05 17:29:09 +05:30 committed by GitHub
commit 10bf545c65
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 4 deletions

View File

@ -316,19 +316,19 @@ SIGNOZ_INSTALLATION_ID=$(curl -s 'https://api64.ipify.org')
echo "" echo ""
echo -e "👉 ${RED}Two ways to go forward\n" echo -e "👉 ${RED}Two ways to go forward\n"
echo -e "${RED}1) ClickHouse as database (recommended for low memory usage)\n" echo -e "${RED}1) ClickHouse as database (default)\n"
echo -e "${RED}2) Kafka + Druid setup to handle scale (recommended for production use)\n" echo -e "${RED}2) Kafka + Druid setup to handle scale (recommended for production use)\n"
read -p "⚙️ Enter your preference (1/2):" choice_setup read -p "⚙️ Enter your preference (1/2):" choice_setup
while [[ $choice_setup == "" || ( $choice_setup != "1" && $choice_setup != "2" ) ]] while [[ $choice_setup != "1" && $choice_setup != "2" && $choice_setup != "" ]]
do do
# echo $choice_setup # echo $choice_setup
echo -e "\n❌ ${CYAN}Please enter either 1 or 2" echo -e "\n❌ ${CYAN}Please enter either 1 or 2"
read -rp "⚙️ Enter your preference (1/2): " choice_setup read -p "⚙️ Enter your preference (1/2): " choice_setup
# echo $choice_setup # echo $choice_setup
done done
if [ $choice_setup == "1" ];then if [[ $choice_setup == "1" || $choice_setup == "" ]];then
setup_type='clickhouse' setup_type='clickhouse'
else else
setup_type='druid' setup_type='druid'

View File

@ -67,6 +67,7 @@ const App = () => {
}} }}
/> />
</Suspense> </Suspense>
</BaseLayout> </BaseLayout>
</RouteProvider> </RouteProvider>
</Switch> </Switch>