├── .gitignore ├── ElasticsearchFeeder.module.php ├── LICENCE.txt ├── batchCleanup.php ├── batchSync.php ├── composer.json ├── composer.lock ├── docs └── images │ ├── debugModule.png │ ├── markupRuntimeConfig.png │ └── markupRuntimeField.png └── readme.md /.gitignore: -------------------------------------------------------------------------------- 1 | vendor -------------------------------------------------------------------------------- /ElasticsearchFeeder.module.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blue-tomato/ElasticsearchFeeder/HEAD/ElasticsearchFeeder.module.php -------------------------------------------------------------------------------- /LICENCE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blue-tomato/ElasticsearchFeeder/HEAD/LICENCE.txt -------------------------------------------------------------------------------- /batchCleanup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blue-tomato/ElasticsearchFeeder/HEAD/batchCleanup.php -------------------------------------------------------------------------------- /batchSync.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blue-tomato/ElasticsearchFeeder/HEAD/batchSync.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blue-tomato/ElasticsearchFeeder/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blue-tomato/ElasticsearchFeeder/HEAD/composer.lock -------------------------------------------------------------------------------- /docs/images/debugModule.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blue-tomato/ElasticsearchFeeder/HEAD/docs/images/debugModule.png -------------------------------------------------------------------------------- /docs/images/markupRuntimeConfig.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blue-tomato/ElasticsearchFeeder/HEAD/docs/images/markupRuntimeConfig.png -------------------------------------------------------------------------------- /docs/images/markupRuntimeField.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blue-tomato/ElasticsearchFeeder/HEAD/docs/images/markupRuntimeField.png -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blue-tomato/ElasticsearchFeeder/HEAD/readme.md --------------------------------------------------------------------------------