Skip to content

Commit

Permalink
documentation update to version 0.2.7 (#29)
Browse files Browse the repository at this point in the history
* documentation update to version 0.2.7
  • Loading branch information
rkluszczynski committed Aug 1, 2017
1 parent 49e0b98 commit f793b6d
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions docs/index.md
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
# Quickstart

To see usage, you need to have Java 8 installed. Next, download latest release version from
[here](https://github.com/rkluszczynski/avro-cli/releases/download/avro-cli-0.2.6/avro-cli-0.2.6.jar)
[here](https://github.com/rkluszczynski/avro-cli/releases/download/avro-cli-0.2.7/avro-cli-0.2.7.jar)
or using command below.

```bash
curl -L -O https://github.com/rkluszczynski/avro-cli/releases/download/avro-cli-0.2.6/avro-cli-0.2.6.jar
curl -L -O https://github.com/rkluszczynski/avro-cli/releases/download/avro-cli-0.2.7/avro-cli-0.2.7.jar
```

Finally, just type:

```bash
java -jar avro-cli-0.2.6.jar
java -jar avro-cli-0.2.7.jar
```

to print help.
Expand Down Expand Up @@ -48,7 +48,7 @@ Usage: convert [options]
Example of usage printing JSON from Avro message to standard output:

```bash
java -jar avro-cli-0.2.6.jar convert -j -s schema-friendly-union.avsc -i message-friendly-union.avro
java -jar avro-cli-0.2.7.jar convert -j -s schema-friendly-union.avsc -i message-friendly-union.avro

```

Expand All @@ -68,7 +68,7 @@ Usage: fingerprint [options]

### kafka-consume: Consume records from Kafka

```bash
```
Usage: kafka-consume [options]
Options:
--bootstrap-servers, -b
Expand Down Expand Up @@ -123,7 +123,7 @@ Usage: validate [options]
Example of usage:

```bash
java -jar avro-cli-0.2.6.jar validate -c backward -s schema2-string-null-field.json -p schema1-string-field.json
java -jar avro-cli-0.2.7.jar validate -c backward -s schema2-string-null-field.json -p schema1-string-field.json
```

where files can bee seen [here](https://github.com/rkluszczynski/avro-cli/tree/master/src/test/resources/validation).
Expand All @@ -141,7 +141,7 @@ resources folder to serve schemas files.
Finally, validate schema against empty history using command below.

```bash
java -jar avro-cli-0.2.6.jar validate -s http://localhost:8000/schema-no-fields.avsc
java -jar avro-cli-0.2.7.jar validate -s http://localhost:8000/schema-no-fields.avsc
```

# Credits
Expand Down

0 comments on commit f793b6d

Please sign in to comment.