aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'README.md')
-rw-r--r--README.md8
1 files changed, 4 insertions, 4 deletions
diff --git a/README.md b/README.md
index ce7d82f..c76fb89 100644
--- a/README.md
+++ b/README.md
@@ -65,7 +65,7 @@ private-join-and-compute folder.)
Next, generate some dummy data to run the protocol on:
```shell
-bazel-bin/generate_dummy_data --server_data_file=/tmp/dummy_server_data.csv \
+bazel-bin/private_join_and_compute/generate_dummy_data --server_data_file=/tmp/dummy_server_data.csv \
--client_data_file=/tmp/dummy_client_data.csv
```
@@ -76,7 +76,7 @@ also change the size of the dummy data generated using additional flags. For
example:
```shell
-bazel-bin/generate_dummy_data \
+bazel-bin/private_join_and_compute/generate_dummy_data \
--server_data_file=/tmp/dummy_server_data.csv \
--client_data_file=/tmp/dummy_client_data.csv --server_data_size=1000 \
--client_data_size=1000 --intersection_size=200 --max_associated_value=100
@@ -85,7 +85,7 @@ bazel-bin/generate_dummy_data \
Once you've generated dummy data, you can start the server as follows:
```shell
-bazel-bin/server --server_data_file=/tmp/dummy_server_data.csv
+bazel-bin/private_join_and_compute/server --server_data_file=/tmp/dummy_server_data.csv
```
The server will load data from the specified file, and wait for a connection
@@ -96,7 +96,7 @@ Create a new terminal and navigate to the private-join-and-compute folder. Once
there, run the following command to start the client:
```shell
-bazel-bin/client --client_data_file=/tmp/dummy_client_data.csv
+bazel-bin/private_join_and_compute/client --client_data_file=/tmp/dummy_client_data.csv
```
The client will connect to the server and execute the steps of the protocol