first commit

This commit is contained in:
Sven Wappler
2021-04-17 00:26:33 +02:00
commit 866c63cc63
813 changed files with 100696 additions and 0 deletions

View File

@@ -0,0 +1,2 @@
# Important: This file is deprecated and will removed with EXT:meilisearch 12.x
@import 'EXT:meilisearch/Configuration/TypoScript/Examples/ConnectionFromConfVars/setup.typoscript'

View File

@@ -0,0 +1,24 @@
plugin.tx_meilisearch {
solr {
scheme = TEXT
scheme {
value = {$plugin.tx_meilisearch.solr.scheme}
override.data = global:TYPO3_CONF_VARS|EXTCONF|solr|scheme
}
host = TEXT
host {
value = {$plugin.tx_meilisearch.solr.host}
override.data = global:TYPO3_CONF_VARS|EXTCONF|solr|host
}
port = TEXT
port {
value = {$plugin.tx_meilisearch.solr.port}
override.data = global:TYPO3_CONF_VARS|EXTCONF|solr|port
}
path = TEXT
path {
value = {$plugin.tx_meilisearch.solr.path}
override.data = global:TYPO3_CONF_VARS|EXTCONF|solr|path
}
}
}