From 1cd79615747085f443a7a33defb0557dbda551f2 Mon Sep 17 00:00:00 2001
From: serinko <97586125+serinko@users.noreply.github.com>
Date: Mon, 21 Oct 2024 12:44:05 +0200
Subject: [PATCH] try to add accordion
---
.../pages/operators/nodes/nym-node/setup.mdx | 31 ++++++++++++++++++-
1 file changed, 30 insertions(+), 1 deletion(-)
diff --git a/documentation/docs/pages/operators/nodes/nym-node/setup.mdx b/documentation/docs/pages/operators/nodes/nym-node/setup.mdx
index 20372ca7f1..8ceadcd6a4 100644
--- a/documentation/docs/pages/operators/nodes/nym-node/setup.mdx
+++ b/documentation/docs/pages/operators/nodes/nym-node/setup.mdx
@@ -10,6 +10,7 @@ import { Tabs } from 'nextra/components';
import { RunTabs } from 'components/operators/nodes/node-run-command-tabs';
import { VarInfo } from 'components/variable-info.tsx';
import { MigrateTabs } from 'components/operators/nodes/node-migrate-command-tabs'
+import {Accordion, AccordionItem} from "@nextui-org/react";
# Nym Node Setup & Run
@@ -73,9 +74,37 @@ You can always use `--help` flag to see the commands or arguments associated wit
Run `./nym-node --help` to see all available commands:
+
+
+
+
+
```
-
+!-- cmdrun ../../../../target/release/nym-node --help --
+
+Usage: nym-node [OPTIONS]
+
+Commands:
+ build-info Show build information of this binary
+ bonding-information Show bonding information of this node depending on its currently selected mode
+ node-details Show details of this node
+ migrate Attempt to migrate an existing mixnode or gateway into a nym-node
+ run Start this nym-node
+ sign Use identity key of this node to sign provided message
+ help Print this message or the help of the given subcommand(s)
+
+Options:
+ -c, --config-env-file
+ Path pointing to an env file that configures the nym-node and overrides any preconfigured values [env: NYMNODE_CONFIG_ENV_FILE_ARG=]
+ --no-banner
+ Flag used for disabling the printed banner in tty [env: NYMNODE_NO_BANNER=]
+ -h, --help
+ Print help
+ -V, --version
+ Print version
```
+
+
To list all available flags for each command, run `./nym-node --help` for example `./nym-node run --help`: