From 1132d441e14a7c495d58b40e8376ceb00e8b288c Mon Sep 17 00:00:00 2001 From: Hendrik Eeckhaut Date: Wed, 4 Jun 2025 08:56:55 +0200 Subject: [PATCH] docs: improve example readme (#904) --- crates/examples/attestation/README.md | 1 + crates/examples/interactive/README.md | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/crates/examples/attestation/README.md b/crates/examples/attestation/README.md index 03a117382..9f1a7dfc7 100644 --- a/crates/examples/attestation/README.md +++ b/crates/examples/attestation/README.md @@ -10,6 +10,7 @@ This example demonstrates the simplest possible use case for TLSNotary. A Prover ### 1. Notarize Before starting the notarization, set up the local test server and local notary. +Run the following commands from the root of this repository (not from this example's folder): 1. Run the test server: ```shell diff --git a/crates/examples/interactive/README.md b/crates/examples/interactive/README.md index 3d7e7ee06..f4e34ced0 100644 --- a/crates/examples/interactive/README.md +++ b/crates/examples/interactive/README.md @@ -2,7 +2,7 @@ This example demonstrates how to use TLSNotary in a simple interactive session between a Prover and a Verifier. It involves the Verifier first verifying the MPC-TLS session and then confirming the correctness of the data. -This example fetches data from a local test server. To start this server, run: +This example fetches data from a local test server. To start the server, run the following command from the root of this repository (not from this example's folder): ```shell RUST_LOG=info PORT=4000 cargo run --bin tlsn-server-fixture ```