diff --git a/.cspell.json b/.cspell.json
index 90fea11..0dc1b63 100644
--- a/.cspell.json
+++ b/.cspell.json
@@ -48,7 +48,9 @@
"extip",
"staticnode",
"permissioned",
- "Secp"
+ "Secp",
+ "libpq",
+ "dylib"
],
"flagWords": [],
"ignorePaths": [
diff --git a/docs/guides/nodes-and-sdks.md b/docs/guides/nodes-and-sdks.md
index 4e28dfd..c9833f2 100644
--- a/docs/guides/nodes-and-sdks.md
+++ b/docs/guides/nodes-and-sdks.md
@@ -45,4 +45,4 @@ Waku provides integrations tailored for mobile applications, enabling Waku to ru
| JSON-RPC API | `JSON-RPC` API interface provided by `nwaku` and `go-waku` to interact with the Waku Network | |
| [@waku/react](https://www.npmjs.com/package/@waku/react) | React components and UI adapters designed for seamless integration with `js-waku` | |
| [@waku/create-app](https://www.npmjs.com/package/@waku/create-app) | Starter kit to bootstrap your next `js-waku` project from various example templates | |
-| [nwaku-compose](https://github.com/alrevuelta/nwaku-compose) | Pre-configured `docker-compose` setup for running and monitoring a `nwaku` node using Prometheus and Grafana. | [Run Nwaku with Docker Compose](/guides/nwaku/run-docker-compose) |
\ No newline at end of file
+| [nwaku-compose](https://github.com/alrevuelta/nwaku-compose) | Pre-configured Docker Compose setup for running and monitoring a `nwaku` node using Prometheus and Grafana. | [Run Nwaku with Docker Compose](/guides/nwaku/run-docker-compose) |
\ No newline at end of file
diff --git a/docs/guides/nwaku/build-source.md b/docs/guides/nwaku/build-source.md
index e21ec6a..fc3d2c8 100644
--- a/docs/guides/nwaku/build-source.md
+++ b/docs/guides/nwaku/build-source.md
@@ -11,7 +11,7 @@ This guide provides detailed steps to build a `nwaku` node from the source code
## Install Dependencies
-To build `nwaku`, you need the standard developer tools, including a C compiler, Make, Bash, and Git.
+To build `nwaku`, you need the standard developer tools, including a C compiler, Make, Bash, Git, and PostgreSQL client library.
```mdx-code-block
import Tabs from '@theme/Tabs';
@@ -22,14 +22,14 @@ import TabItem from '@theme/TabItem';
```bash
-sudo apt-get install build-essential git
+sudo apt-get install build-essential git libpq5
```
```bash
-sudo dnf install @development-tools
+sudo dnf install @development-tools git libpq-devel
```
@@ -37,14 +37,17 @@ sudo dnf install @development-tools
```bash
# Using your favorite AUR helper
-[AUR HELPER] -S base-devel
+sudo [AUR HELPER] -S base-devel git postgresql-libs
```
```bash
-brew install cmake
+brew install cmake git postgresql@15
+# Create a symbolic link to libpq.5.dylib in /usr/local/lib/
+sudo mkdir -p /usr/local/lib/
+sudo ln -s /opt/homebrew/opt/postgresql@15/lib/libpq.5.dylib /usr/local/lib/libpq.dylib
```
diff --git a/docs/guides/reference/node-config-options.md b/docs/guides/reference/node-config-options.md
index 642414b..12d3bb4 100644
--- a/docs/guides/reference/node-config-options.md
+++ b/docs/guides/reference/node-config-options.md
@@ -16,7 +16,7 @@ Here are the available node configuration options, along with their default valu
| Name | Default Value | Description |
| - | - | - |
| `log-level` | `logging.LogLevel.INFO` | Sets the log level for process. Supported levels: TRACE, DEBUG, INFO, NOTICE, WARN, ERROR or FATAL |
-| `log-format` | `logging.LogFormat.TEXT` | Specifies what kind of logs should be written to stdout. Suported formats: TEXT, JSON |
+| `log-format` | `logging.LogFormat.TEXT` | Specifies what kind of logs should be written to stdout. Supported formats: TEXT, JSON |
## General Node Config
@@ -48,7 +48,7 @@ Here are the available node configuration options, along with their default valu
| `relay` | `true` | Enable relay protocol: true\|false |
| `relay-peer-exchange` | `false` | Enable gossipsub peer exchange in relay protocol: true\|false |
| `rln-relay` | `false` | Enable spam protection through rln-relay: true\|false |
-| `rln-relay-cred-path` | | The path for peristing rln-relay credential |
+| `rln-relay-cred-path` | | The path for persisting rln-relay credential |
| `rln-relay-membership-index` | `0` | The index of credentials to use |
| `rln-relay-membership-group-index` | `0` | The index of credentials to use, within a specific rln membership set |
| `rln-relay-pubsub-topic` | `/waku/2/default-waku/proto` | The pubsub topic for which rln-relay gets enabled |
@@ -73,7 +73,7 @@ Here are the available node configuration options, along with their default valu
| `store` | `false` | Enable/disable waku store protocol |
| `storenode` | | Peer multiaddress to query for storage |
| `store-message-retention-policy` | time:172800 | Message store retention policy. Time retention policy: 'time:'. Capacity retention policy: 'capacity:'. Set to 'none' to disable |
-| `store-message-db-url` | `sqlite://store.sqlite3` | The database connection URL for peristent storage |
+| `store-message-db-url` | `sqlite://store.sqlite3` | The database connection URL for persistent storage |
| `store-message-db-vacuum` | `false` | Enable database vacuuming at start. Only supported by SQLite database engine |
| `store-message-db-migration` | `true` | Enable database migration at start |
| `store-resume-peer` | | Peer multiaddress to resume the message store at boot |
diff --git a/docs/powered-by-waku.mdx b/docs/powered-by-waku.mdx
index e109050..c0334f2 100644
--- a/docs/powered-by-waku.mdx
+++ b/docs/powered-by-waku.mdx
@@ -33,5 +33,4 @@ import { PoweredBy } from "@site/src/components/mdx";
link: "https://thegraph.com/",
},
]}
-/>
-``
\ No newline at end of file
+/>
\ No newline at end of file
diff --git a/docusaurus.config.js b/docusaurus.config.js
index 23ed433..1ebf32d 100644
--- a/docusaurus.config.js
+++ b/docusaurus.config.js
@@ -142,7 +142,7 @@ const config = {
title: "Community",
items: [
{
- href: "https://discord.waku.org/",
+ href: "https://discord.waku.org",
label: "Discord",
},
{
@@ -154,7 +154,7 @@ const config = {
label: "Telegram",
},
{
- href: "https://forum.vac.dev/",
+ href: "https://forum.vac.dev",
label: "Vac Forum",
},
],
@@ -171,7 +171,7 @@ const config = {
label: "Blog",
},
{
- href: "https://rfc.vac.dev/",
+ href: "https://rfc.vac.dev",
label: "Vac RFCs",
},
],