Go to file
Anton Iakimov 79330ab331
update wakuv2 fleet DNS discovery enrtree
https://github.com/status-im/infra-misc/issues/171
2023-09-26 15:06:16 +02:00
.github/workflows feat: improvements on docs (#24) 2022-12-19 16:56:42 +05:30
.vscode Squashed commit of the following: 2022-11-08 10:42:05 +11:00
diagrams add peer discovery guide 2023-06-16 09:40:22 +01:00
docs update wakuv2 fleet DNS discovery enrtree 2023-09-26 15:06:16 +02:00
scripts reorg nwaku binary acquisition 2023-06-19 18:07:45 +01:00
src add terms page 2023-06-13 10:37:46 +10:00
static/img add nwaku compose guide 2023-06-15 03:09:14 +01:00
.cspell.json reorg nwaku binary acquisition 2023-06-19 18:07:45 +01:00
.gitignore Squashed commit of the following: 2022-11-08 10:42:05 +11:00
.huskyrc add: prettier 2022-11-11 19:52:14 +05:30
.lintstagedrc add: prettier 2022-11-11 19:52:14 +05:30
.prettierignore add: prettier 2022-11-11 19:52:14 +05:30
Jenkinsfile fix jenkinsfile 2023-06-13 18:56:32 +01:00
README.md peer discovery & sidebar reorg 2023-06-14 01:26:55 +01:00
babel.config.js feat: use Logos theme & plugin (#33) 2023-01-23 15:07:39 +05:30
docusaurus.config.js improve guides with feedback 2023-06-20 12:41:55 +01:00
package.json upgrade logos preset 2023-06-22 17:30:43 +03:30
sidebars.js improve guides with feedback 2023-06-20 12:41:55 +01:00
tsconfig.json feat: use Logos theme & plugin (#33) 2023-01-23 15:07:39 +05:30
yarn.lock upgrade logos preset 2023-06-22 17:30:43 +03:30

README.md

Waku Documentation Portal

Waku Documentation Portal

The Waku Documentation Portal can be accessed at https://docs.waku.org/ and was built using Docusaurus 2, a modern static website generator.

Prerequisites

Installation

Clone this repository:

git clone https://github.com/waku-org/docs.waku.org

Install the dependencies:

yarn

# or

yarn install

Running Locally

yarn start

Check for spelling errors before deploying:

yarn check:spell

Create a production build locally to check for errors:

yarn build

# test the build

yarn serve

Configuration

Edit the docusaurus.config.js file located in the repository's root directory, and update the businessUnit field within the presets section. Here is a list of valid values for this field:

  • Logos
  • Codex
  • Waku

Example:

presets: [
  [
    '@acid-info/logos-docusaurus-preset',
    {
      businessUnit: 'Waku',
    },
  ],
],

This should suffice since Logos plugins will handle other configurations linked to the designated business unit. However, if you encounter any inaccuracies in the data provided by Logos Plugins, please visit the Logos Docusaurus Plugins page and submit an issue.

Customization

You can find the instructions on adding more documentation sections, localization, and versioning on the Docusaurus website.

Note that theme customization is limited; for further instructions on customizing your theme, head over to Logos Docusaurus Theme.

Troubleshooting

Docusaurus depends heavily on caching to enhance site performance. If you make changes that do not appear in the portal, try clearing the cache by running:

yarn clear