Update acseo_typesense.yaml - use container configurator (#1899)

This commit is contained in:
Camille Islasse
2025-12-03 20:25:49 +01:00
committed by GitHub
parent 21032ce4c2
commit 387f8cc6b3
2 changed files with 7 additions and 3 deletions

View File

@@ -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

View File

@@ -2,6 +2,10 @@
"bundles": {
"ACSEO\\TypesenseBundle\\ACSEOTypesenseBundle": ["all"]
},
"container": {
"typesense_url": "%env(TYPESENSE_URL)%",
"typesense_key": "%env(TYPESENSE_KEY)%"
},
"copy-from-recipe": {
"config/": "%CONFIG_DIR%/"
},