Skip to content
This repository was archived by the owner on Mar 25, 2025. It is now read-only.

Commit a61dfe5

Browse files
authored
Merge pull request #12 from ZKStats/fix-8
fix-8
2 parents cd8f0a7 + 3e09263 commit a61dfe5

File tree

3 files changed

+13
-13
lines changed

3 files changed

+13
-13
lines changed

docs/getting-started/deployment/servers/local/manually.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -14,15 +14,10 @@ sidebar_position: 2
1414
cd mpc-demo-infra
1515
```
1616

17-
1. Install non-Python dependencies:
17+
1. Set up the environment and install dependencies:
1818

1919
```bash
20-
./setup_env.sh --setup-mpspdz
21-
```
22-
23-
1. Install Python dependencies
24-
```bash
25-
poetry install
20+
./setup_env.sh --setup-local
2621
```
2722

2823
1. Create the following configuration files at the repository root:
@@ -86,3 +81,8 @@ sidebar_position: 2
8681
poetry run consumet-api-run
8782
```
8883

84+
1. Start the `Notary Server`
85+
```bash
86+
../tlsn/notary/target/release/notary-server
87+
```
88+

docs/getting-started/deployment/servers/remote/manually.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ Follow the steps below on each server before deploying:
3838

3939
1. Install other dependencies:
4040
```bash
41-
./setup_env.sh --setup-mpspdz
41+
./setup_env.sh
4242
```
4343

4444
1. Install Python dependencies

docs/getting-started/deployment/troubleshooting.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,11 @@ If you encounter issues:
1010

1111
1. Ensure all dependencies are correctly installed.
1212
2. Check that the required ports (8005-8008, 8010-8100) are not in use.
13-
3. Verify that TLSN and MP-SPDZ exit in the correct locations (`../tlsn` and `../MP-SPDZ`).
14-
4. For MP-SPDZ issues, ensure that
15-
- you've added `MOD = -DGFP_MOD_SZ=5` to `CONFIG.mine`.
16-
- you've generated certificates for computation parties. If not, run `Scripts/setup-ssl.sh` under `../MP-SPDZ`.
17-
- you've rebuilt the VM. If not, run `make replicated-ring-party.x` under `../MP-SPDZ`.
13+
3. Verify that symbolic links to `tlsn` and `MP-SPDZ` exist in the expected locations (`../tlsn` and `../MP-SPDZ` relative to the repository root).
14+
4. For `MP-SPDZ` issues, ensure that:
15+
- you've added `MOD = -DGFP_MOD_SZ=5` to `MP-SPDZ/CONFIG.mine` at the repository root.
16+
- you've generated certificates for computation parties. If not, run `Scripts/setup-ssl.sh` under `MP-SPDZ` directory at the repository root.
17+
- you've rebuilt the VM. If not, run `make replicated-ring-party.x` under `MP-SPDZ` directory at the repository root.
1818
5. If you run into Docker-related issues, try these commands to clean up your environment:
1919
```bash
2020
docker system prune -a --volumes

0 commit comments

Comments
 (0)