https://github.com/simplicitesoftware/module-elasticsearchindexer
https://github.com/simplicitesoftware/module-elasticsearchindexer
Last synced: 6 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/simplicitesoftware/module-elasticsearchindexer
- Owner: simplicitesoftware
- Created: 2021-03-30T20:52:49.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2021-08-25T15:26:29.000Z (almost 5 years ago)
- Last Synced: 2024-12-29T10:45:01.181Z (over 1 year ago)
- Language: Java
- Size: 36.1 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README

* * *
`ElasticSearchIndexer` module definition
========================================
Elastic Search playground module
====================
This module is used as a way to index Simplicité's apps contents into an ElasticSearch Instance.
It is an pre-pre-alpha MVP.
Run an elastic search instance
---------------------------
Create `docker-compose.yml`
```yml
version: "3"
services:
elasticsearch:
image: elasticsearch:7.10.1
restart: always
environment:
discovery.type: single-node
container_name: elasticsearch
ports:
- 9200:9200
- 9300:9300
kibana:
image: kibana:7.10.1
restart: always
container_name: kibana
ports:
- 5601:5601
```
Run docker and expose port
```shell
sudo docker-compose up -d
ngrok http 9200
```
Configure `ESI_CONFIG` with ES instance
```json
{
"instance": "http://78e183b5193e.ngrok.io"
}
```