Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -252,6 +252,10 @@ Run the following commands to install pre-commit hooks:
- Install stable libsodium version from [here](https://download.libsodium.org/libsodium/releases/).
- Follow steps to install libsodium from the [libsodium installation guide](https://doc.libsodium.org/installation).

> Note (Debian/Ubuntu): If you're compiling libsodium from source, install build-essential first.
```bash
sudo apt-get update && sudo apt-get install -y build-essential
```
### Install Node.js

- Install Node.js from [here](https://nodejs.org/).
Expand Down Expand Up @@ -324,6 +328,11 @@ cargo run --example create_key -- \
--force
```

> :warning: Debian/Ubuntu: If you encounter OpenSSL build errors, install the required packages:

```bash
sudo apt-get update && sudo apt-get install -y pkg-config libssl-dev
```
### Configure Webhook URL

`/config/config.json` file is partially pre-configured. You need to specify the webhook URL that will receive updates from the relayer service.
Expand Down