From 1fa62e485b25849c5a56bdbad3054f598438da42 Mon Sep 17 00:00:00 2001 From: Lionel Sambuc Date: Wed, 13 Nov 2019 10:30:25 +0100 Subject: [PATCH] Clarifications in the quickstart guide --- README.md | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index a3b9c21..0de052c 100644 --- a/README.md +++ b/README.md @@ -39,7 +39,7 @@ This enables the index implementations to be agnostic from the underlying data s cargo run --release -- 1 10 100 ``` - * Index the data: + * Link the data in the indexer folder (It has to be in the current working directory when calling the indexer): ```sh cd mercator_indexer @@ -47,6 +47,11 @@ This enables the index implementations to be agnostic from the underlying data s do ln -s $f done + ``` + + * Index the data: + + ```sh cargo run --release -- 1k 10k 100k ```