From a0b85486492d1bcd817241524367edd1479239b4 Mon Sep 17 00:00:00 2001 From: "CanbiZ (MickLesk)" <47820557+MickLesk@users.noreply.github.com> Date: Thu, 26 Mar 2026 12:21:10 +0100 Subject: [PATCH] add parade db search --- install/lobehub-install.sh | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/install/lobehub-install.sh b/install/lobehub-install.sh index b3dcace4..69f00a57 100644 --- a/install/lobehub-install.sh +++ b/install/lobehub-install.sh @@ -18,8 +18,12 @@ $STD apt install -y \ build-essential msg_ok "Installed Dependencies" -PG_VERSION="17" PG_MODULES="pgvector" setup_postgresql -PG_DB_NAME="lobehub" PG_DB_USER="lobehub" PG_DB_EXTENSIONS="vector" setup_postgresql_db +msg_info "Adding ParadeDB Repository" +curl -fsSL https://packagecloud.io/install/repositories/paradedb/paradedb/script.deb.sh | $STD bash +msg_ok "Added ParadeDB Repository" + +PG_VERSION="17" PG_MODULES="pgvector,pg-search" setup_postgresql +PG_DB_NAME="lobehub" PG_DB_USER="lobehub" PG_DB_EXTENSIONS="vector,pg_search" setup_postgresql_db NODE_VERSION="24" setup_nodejs msg_info "Installing pnpm"