From 4644bb4f47ed9f8cde4cd78f1283d8d73dbcc079 Mon Sep 17 00:00:00 2001 From: Fabre Florian Date: Mon, 3 Nov 2025 10:40:40 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A7(compose)=20disable=20indexer=20in?= =?UTF-8?q?=20default=20configuration?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Set SEARCH_INDEXER_CLASS=None as default configuration for dev. Rename docker network 'lasuite-net' as 'lasuite' to match with Drive configuration. Signed-off-by: Fabre Florian --- compose.yml | 10 +++++----- env.d/development/common | 6 +++--- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/compose.yml b/compose.yml index 1873d604..cb5905c3 100644 --- a/compose.yml +++ b/compose.yml @@ -74,7 +74,7 @@ services: - "8071:8000" networks: default: {} - lasuite-net: + lasuite: aliases: - impress volumes: @@ -99,7 +99,7 @@ services: - DJANGO_CONFIGURATION=Development networks: - default - - lasuite-net + - lasuite env_file: - env.d/development/common - env.d/development/common.local @@ -117,7 +117,7 @@ services: - "8083:8083" networks: default: {} - lasuite-net: + lasuite: aliases: - nginx volumes: @@ -232,6 +232,6 @@ services: restart: true networks: - lasuite-net: - name: lasuite-net + lasuite: + name: lasuite-network driver: bridge diff --git a/env.d/development/common b/env.d/development/common index a6bfb65b..5b1564ad 100644 --- a/env.d/development/common +++ b/env.d/development/common @@ -78,8 +78,8 @@ Y_PROVIDER_API_KEY=yprovider-api-key # Theme customization THEME_CUSTOMIZATION_CACHE_TIMEOUT=15 -# Indexer -SEARCH_INDEXER_CLASS="core.services.search_indexers.SearchIndexer" -SEARCH_INDEXER_SECRET=find-api-key-for-docs-with-exactly-50-chars-length # Key generated by create_demo in Find app. +# Indexer (disabled) +# SEARCH_INDEXER_CLASS="core.services.search_indexers.SearchIndexer" +SEARCH_INDEXER_SECRET=find-api-key-for-docs-with-exactly-50-chars-length # Key generated by create_demo in Find app. SEARCH_INDEXER_URL="http://find:8000/api/v1.0/documents/index/" SEARCH_INDEXER_QUERY_URL="http://find:8000/api/v1.0/documents/search/"