From a86cf8893cfe44e40f0d626d924c644ad00050da Mon Sep 17 00:00:00 2001 From: Yury Kossakovsky Date: Thu, 25 Dec 2025 17:09:29 -0700 Subject: [PATCH] fix(nocodb): add database init and final report entry missing from initial nocodb implementation --- scripts/07_final_report.sh | 3 +++ scripts/init_databases.sh | 1 + 2 files changed, 4 insertions(+) diff --git a/scripts/07_final_report.sh b/scripts/07_final_report.sh index 4b75819..830c498 100755 --- a/scripts/07_final_report.sh +++ b/scripts/07_final_report.sh @@ -91,6 +91,9 @@ fi if is_profile_active "open-webui"; then echo -e " ${GREEN}*${NC} ${WHITE}Open WebUI${NC}: Register your account" fi +if is_profile_active "nocodb"; then + echo -e " ${GREEN}*${NC} ${WHITE}NocoDB${NC}: Create your account on first login" +fi if is_profile_active "gost"; then echo -e " ${GREEN}*${NC} ${WHITE}Gost Proxy${NC}: Routing AI traffic through external proxy" fi diff --git a/scripts/init_databases.sh b/scripts/init_databases.sh index 9e1d72c..c46741a 100755 --- a/scripts/init_databases.sh +++ b/scripts/init_databases.sh @@ -15,6 +15,7 @@ source "$(dirname "$0")/utils.sh" && init_paths DATABASES=( "langfuse" "lightrag" + "nocodb" "postiz" "waha" )