2022-08-04 11:42:53 +00:00
|
|
|
// @ts-check
|
2023-01-23 09:37:39 +00:00
|
|
|
|
2023-05-19 23:35:51 +00:00
|
|
|
/** @type {import("@docusaurus/plugin-content-docs").SidebarsConfig} */
|
2022-08-04 11:42:53 +00:00
|
|
|
const sidebars = {
|
2023-06-14 00:26:55 +00:00
|
|
|
guides: [
|
2023-11-23 11:01:32 +00:00
|
|
|
"guides/getting-started",
|
2023-06-14 03:34:58 +00:00
|
|
|
{
|
|
|
|
type: "category",
|
|
|
|
label: "Run a Nwaku Node",
|
|
|
|
link: {
|
|
|
|
type: "doc",
|
2023-11-23 11:01:32 +00:00
|
|
|
id: "guides/nwaku/run-node",
|
2023-06-14 03:34:58 +00:00
|
|
|
},
|
|
|
|
items: [
|
2023-06-15 13:54:02 +00:00
|
|
|
"guides/nwaku/build-source",
|
2023-06-14 12:08:58 +00:00
|
|
|
"guides/nwaku/run-docker",
|
2023-06-15 02:09:14 +00:00
|
|
|
"guides/nwaku/run-docker-compose",
|
2023-06-16 08:40:22 +00:00
|
|
|
"guides/nwaku/configure-discovery",
|
2023-11-23 11:01:32 +00:00
|
|
|
"guides/nwaku/configure-nwaku",
|
|
|
|
"guides/nwaku/config-methods",
|
|
|
|
"guides/nwaku/config-options",
|
2023-11-30 17:42:27 +00:00
|
|
|
{
|
|
|
|
type: 'html',
|
|
|
|
value: '<a href="https://waku-org.github.io/waku-rest-api/" target="_blank" rel="noopener noreferrer" class="menu__link external-link">REST API Reference<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M11.1918 4H3.42848V2.85715H13.1428V12.5714H11.9999V4.80813L3.83254 12.9755L3.02441 12.1674L11.1918 4Z" fill="white"/></svg>',
|
|
|
|
},
|
2023-06-15 20:42:35 +00:00
|
|
|
]
|
|
|
|
},
|
2023-07-11 17:52:38 +00:00
|
|
|
{
|
|
|
|
type: "category",
|
|
|
|
label: "JavaScript Waku SDK",
|
|
|
|
link: {
|
|
|
|
type: "doc",
|
|
|
|
id: "guides/js-waku/index",
|
|
|
|
},
|
|
|
|
items: [
|
|
|
|
"guides/js-waku/light-send-receive",
|
|
|
|
"guides/js-waku/store-retrieve-messages",
|
2024-01-11 09:42:56 +00:00
|
|
|
"guides/js-waku/message-encryption",
|
2023-11-22 22:28:54 +00:00
|
|
|
"guides/js-waku/use-waku-react",
|
2023-07-15 21:54:13 +00:00
|
|
|
"guides/js-waku/use-waku-create-app",
|
2023-08-03 05:40:57 +00:00
|
|
|
"guides/js-waku/configure-discovery",
|
2023-08-16 08:29:32 +00:00
|
|
|
"guides/js-waku/run-waku-nodejs",
|
|
|
|
"guides/js-waku/debug-waku-dapp",
|
2023-11-21 13:19:52 +00:00
|
|
|
"guides/js-waku/manage-filter",
|
2023-07-11 17:52:38 +00:00
|
|
|
{
|
|
|
|
type: 'html',
|
2023-08-16 08:29:32 +00:00
|
|
|
value: '<a href="https://examples.waku.org" target="_blank" rel="noopener noreferrer" class="menu__link external-link">@waku/sdk Examples<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M11.1918 4H3.42848V2.85715H13.1428V12.5714H11.9999V4.80813L3.83254 12.9755L3.02441 12.1674L11.1918 4Z" fill="white"/></svg>',
|
2023-07-11 17:52:38 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
type: 'html',
|
2023-07-18 18:51:12 +00:00
|
|
|
value: '<a href="https://js.waku.org" target="_blank" rel="noopener noreferrer" class="menu__link external-link">API Reference<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M11.1918 4H3.42848V2.85715H13.1428V12.5714H11.9999V4.80813L3.83254 12.9755L3.02441 12.1674L11.1918 4Z" fill="white"/></svg>',
|
2023-07-11 17:52:38 +00:00
|
|
|
},
|
|
|
|
]
|
|
|
|
},
|
2023-11-23 11:01:32 +00:00
|
|
|
],
|
|
|
|
learn: [
|
|
|
|
"learn/waku-network",
|
2023-06-15 20:42:35 +00:00
|
|
|
{
|
|
|
|
type: "category",
|
2023-11-23 11:01:32 +00:00
|
|
|
label: "Concepts",
|
2023-06-27 22:38:21 +00:00
|
|
|
collapsed: false,
|
2023-06-15 20:42:35 +00:00
|
|
|
items: [
|
2023-11-23 11:01:32 +00:00
|
|
|
"learn/concepts/protocols",
|
|
|
|
"learn/concepts/content-topics",
|
|
|
|
"learn/concepts/network-domains",
|
|
|
|
"learn/concepts/transports",
|
|
|
|
{
|
|
|
|
type: "category",
|
|
|
|
label: "Peer Discovery",
|
|
|
|
link: {
|
|
|
|
type: "doc",
|
|
|
|
id: "learn/concepts/peer-discovery",
|
|
|
|
},
|
|
|
|
items: [
|
|
|
|
"learn/concepts/static-peers",
|
|
|
|
"learn/concepts/dns-discovery",
|
|
|
|
"learn/concepts/discv5",
|
|
|
|
"learn/concepts/peer-exchange",
|
|
|
|
]
|
|
|
|
},
|
2023-06-14 03:34:58 +00:00
|
|
|
]
|
|
|
|
},
|
2023-11-23 11:01:32 +00:00
|
|
|
"learn/security-features",
|
|
|
|
"learn/research",
|
|
|
|
"learn/waku-vs-libp2p",
|
|
|
|
"learn/glossary",
|
2023-06-14 00:26:55 +00:00
|
|
|
],
|
2024-02-15 13:38:16 +00:00
|
|
|
research: [
|
|
|
|
{
|
|
|
|
type: "category",
|
|
|
|
label: "Research and Studies",
|
|
|
|
collapsed: false,
|
|
|
|
items: ["research/research-and-studies/incentivisation"],
|
|
|
|
},
|
|
|
|
{
|
|
|
|
type: "category",
|
|
|
|
label: "Nwaku Benchmarks",
|
|
|
|
collapsed: false,
|
|
|
|
items: ["research/benchmarks/postgres-adoption"],
|
|
|
|
},
|
|
|
|
],
|
2022-08-04 11:42:53 +00:00
|
|
|
};
|
|
|
|
|
2023-06-14 00:26:55 +00:00
|
|
|
module.exports = sidebars;
|