You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+8-4Lines changed: 8 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,15 +5,17 @@ Parses XLSX files into ElasticSearch using column titles from specified row comb
5
5
## Prerequisites
6
6
The application requires ElasticSearch as its output.
7
7
8
-
ElasticSearch and Kibana (version 5.0.0) should not require any additional configuration or installation, just download and run from [Elastic](https://www.elastic.co/products).
8
+
ElasticSearch and Kibana (version 5.2.4) should not require any additional configuration or installation, just download and run from [Elastic](https://www.elastic.co/products).
9
9
10
10
## Running
11
-
Running the application,
11
+
Running the application, filename and index is optional to import using terminal mode.
12
12
```
13
-
java -jar excelastic-1.0.1.jar run Launcher
13
+
java -jar excelastic-1.2.0.jar <filename> <index>
14
14
```
15
15
16
-
If any connection errors occur check that the ElasticSearch listen port matches with the elastic_port in the configuration file. Make sure that ElasticSearch is running by directing your browser at [localhost:9200](http://localhost:9200/_count). When the server is started browse to [localhost:8080](http://localhost:8080/) for the web interface.
16
+
When the application successfully connects to the ElasticSearch server, the browser will automatically open a new tab.
17
+
18
+
If any connection errors occur check that the ElasticSearch listen port matches with the elastic_port in the configuration file. Make sure that ElasticSearch is running by directing your browser at [localhost:9200](http://localhost:9200/_count).
17
19
18
20
Compiling a new fatjar,
19
21
```
@@ -30,3 +32,5 @@ mvn clean package
30
32
**elastic_port** (9200) port that ElasticSearch listens to, host is set to localhost.
31
33
32
34
**elastic_host** (localhost) address of the ElasticSearch server.
35
+
36
+
If no configuration file is present a new configuration file will be created using the default values listed here.
0 commit comments