From 387f8cc6b33c7e34ea188197babe41aeb3b2f332 Mon Sep 17 00:00:00 2001 From: Camille Islasse <34024380+camilleislasse@users.noreply.github.com> Date: Wed, 3 Dec 2025 20:25:49 +0100 Subject: [PATCH] Update acseo_typesense.yaml - use container configurator (#1899) --- .../0.7/config/packages/acseo_typesense.yaml | 4 ++-- acseo/typesense-bundle/0.7/manifest.json | 6 +++++- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/acseo/typesense-bundle/0.7/config/packages/acseo_typesense.yaml b/acseo/typesense-bundle/0.7/config/packages/acseo_typesense.yaml index 7d1e45c9..52d47a58 100644 --- a/acseo/typesense-bundle/0.7/config/packages/acseo_typesense.yaml +++ b/acseo/typesense-bundle/0.7/config/packages/acseo_typesense.yaml @@ -1,8 +1,8 @@ # Read the documentation: https://github.com/acseo/TypesenseBundle/blob/master/README.md acseo_typesense: typesense: - url: '%env(resolve:TYPESENSE_URL)%' - key: '%env(resolve:TYPESENSE_KEY)%' + url: '%typesense_url%' + key: '%typesense_key%' # Optional : add prefix to all collection names in Typesense #collection_prefix: 'app_' # Collection settings diff --git a/acseo/typesense-bundle/0.7/manifest.json b/acseo/typesense-bundle/0.7/manifest.json index afc1d10a..3312895b 100644 --- a/acseo/typesense-bundle/0.7/manifest.json +++ b/acseo/typesense-bundle/0.7/manifest.json @@ -2,11 +2,15 @@ "bundles": { "ACSEO\\TypesenseBundle\\ACSEOTypesenseBundle": ["all"] }, + "container": { + "typesense_url": "%env(TYPESENSE_URL)%", + "typesense_key": "%env(TYPESENSE_KEY)%" + }, "copy-from-recipe": { "config/": "%CONFIG_DIR%/" }, "env": { "TYPESENSE_URL": "http://localhost:8108", - "TYPESENSE_KEY" : "123" + "TYPESENSE_KEY": "123" } }