Use explicit versions in the quick start (#66)

This commit is contained in:
Hendrik Eeckhaut
2024-02-19 11:00:16 +01:00
committed by GitHub
parent db9d486e5f
commit ab13b65b18
2 changed files with 4 additions and 8 deletions

View File

@@ -5,7 +5,7 @@ First we need to [install](#install) and configure a [websocket proxy](#proxy) a
## Install Browser Extension (Chrome/Brave) <a name="install"></a>
1. Download the browser extension from <https://github.com/tlsnotary/tlsn-extension/releases/download/0.1.0.3/tlsn-extension-0.1.0.3.zip>
1. Download the browser extension from <https://github.com/tlsnotary/tlsn-extension/releases/download/0.1.0.4-rc.1/tlsn-extension-0.1.0.4.zip>
2. Unzip
⚠️ This is a flat zip file, so be careful if you unzip from the command line, this zip file contains many file at the top level
3. Open **Manage Extensions**: <chrome://extensions/>
@@ -61,14 +61,10 @@ If you plan to run a local notary server:
### Run a Local Notary Server <a name="local-notary"></a>
1. Clone the TLSNotary repository:
1. Clone the TLSNotary repository ("v0.1.0-alpha.4"):
```shell
git clone https://github.com/tlsnotary/tlsn.git
git clone https://github.com/tlsnotary/tlsn.git --branch "v0.1.0-alpha.4"
```
2. Switch to version `v0.1.0-alpha.3`
```bash
git checkout tags/v0.1.0-alpha.3
```
3. Edit the notary server config file (`notary-server/config/config.yaml`) to turn off TLS so that the browser extension can connect to the local notary server without requiring extra steps to accept self-signed certificates in the browser.
```yaml
tls:

View File

@@ -11,7 +11,7 @@ Before we start, make sure you have cloned the `tlsn` repository and have a rece
Clone the `tlsn` repository:
```shell
git clone https://github.com/tlsnotary/tlsn.git
git clone https://github.com/tlsnotary/tlsn.git --branch "v0.1.0-alpha.4"
```
Next open the `tlsn` folder in your favorite IDE.