Merge pull request #80 from waku-org/nwaku-postgres

add libpq pre-req
This commit is contained in:
LordGhostX 2023-07-04 13:39:38 +01:00 committed by GitHub
commit 3ca9cd352d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
6 changed files with 19 additions and 15 deletions

View File

@ -48,7 +48,9 @@
"extip", "extip",
"staticnode", "staticnode",
"permissioned", "permissioned",
"Secp" "Secp",
"libpq",
"dylib"
], ],
"flagWords": [], "flagWords": [],
"ignorePaths": [ "ignorePaths": [

View File

@ -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 | | | 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/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 | | | [@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) | | [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) |

View File

@ -11,7 +11,7 @@ This guide provides detailed steps to build a `nwaku` node from the source code
## Install Dependencies ## 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 ```mdx-code-block
import Tabs from '@theme/Tabs'; import Tabs from '@theme/Tabs';
@ -22,14 +22,14 @@ import TabItem from '@theme/TabItem';
<TabItem value="debian" label="Debian and Ubuntu"> <TabItem value="debian" label="Debian and Ubuntu">
```bash ```bash
sudo apt-get install build-essential git sudo apt-get install build-essential git libpq5
``` ```
</TabItem> </TabItem>
<TabItem value="fedora" label="Fedora"> <TabItem value="fedora" label="Fedora">
```bash ```bash
sudo dnf install @development-tools sudo dnf install @development-tools git libpq-devel
``` ```
</TabItem> </TabItem>
@ -37,14 +37,17 @@ sudo dnf install @development-tools
```bash ```bash
# Using your favorite AUR helper # Using your favorite AUR helper
[AUR HELPER] -S base-devel sudo [AUR HELPER] -S base-devel git postgresql-libs
``` ```
</TabItem> </TabItem>
<TabItem value="mac" label="MacOS (Homebrew)"> <TabItem value="mac" label="MacOS (Homebrew)">
```bash ```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
``` ```
</TabItem> </TabItem>

View File

@ -16,7 +16,7 @@ Here are the available node configuration options, along with their default valu
| Name | Default Value | Description | | 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-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 ## 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` | `true` | Enable relay protocol: true\|false |
| `relay-peer-exchange` | `false` | Enable gossipsub peer exchange in 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` | `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-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-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 | | `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 | | `store` | `false` | Enable/disable waku store protocol |
| `storenode` | | Peer multiaddress to query for storage | | `storenode` | | Peer multiaddress to query for storage |
| `store-message-retention-policy` | time:172800 | Message store retention policy. Time retention policy: 'time:<seconds\>'. Capacity retention policy: 'capacity:<count\>'. Set to 'none' to disable | | `store-message-retention-policy` | time:172800 | Message store retention policy. Time retention policy: 'time:<seconds\>'. Capacity retention policy: 'capacity:<count\>'. 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-vacuum` | `false` | Enable database vacuuming at start. Only supported by SQLite database engine |
| `store-message-db-migration` | `true` | Enable database migration at start | | `store-message-db-migration` | `true` | Enable database migration at start |
| `store-resume-peer` | | Peer multiaddress to resume the message store at boot | | `store-resume-peer` | | Peer multiaddress to resume the message store at boot |

View File

@ -34,4 +34,3 @@ import { PoweredBy } from "@site/src/components/mdx";
}, },
]} ]}
/> />
``

View File

@ -142,7 +142,7 @@ const config = {
title: "Community", title: "Community",
items: [ items: [
{ {
href: "https://discord.waku.org/", href: "https://discord.waku.org",
label: "Discord", label: "Discord",
}, },
{ {
@ -154,7 +154,7 @@ const config = {
label: "Telegram", label: "Telegram",
}, },
{ {
href: "https://forum.vac.dev/", href: "https://forum.vac.dev",
label: "Vac Forum", label: "Vac Forum",
}, },
], ],
@ -171,7 +171,7 @@ const config = {
label: "Blog", label: "Blog",
}, },
{ {
href: "https://rfc.vac.dev/", href: "https://rfc.vac.dev",
label: "Vac RFCs", label: "Vac RFCs",
}, },
], ],