Compare commits

..

2 Commits

Author SHA1 Message Date
mfahampshire 7bc2c070e8 pick yana's edits: remove specified callout theming 2024-10-21 11:20:32 +02:00
mfahampshire edce7a5d3f first pass new ci 2024-10-18 18:40:19 +02:00
5 changed files with 5 additions and 38 deletions
@@ -1,9 +1,10 @@
name: ci-sdk-docs-typescript
on:
workflow_dispatch:
pull_request:
paths:
- "sdk/typescript/**"
- "documentation/"
- "wasm/**"
jobs:
@@ -28,7 +29,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.20'
go-version: "1.20"
- name: Install wasm-pack
run: curl https://rustwasm.github.io/wasm-pack/installer/init.sh -sSf | sh
@@ -36,7 +37,7 @@ jobs:
- name: Install wasm-opt
uses: ./.github/actions/install-wasm-opt
with:
version: '116'
version: "116"
- name: Build branch WASM packages
run: make sdk-wasm-build
-5
View File
@@ -464,11 +464,6 @@ const config = {
/developers/examples/monorepo-examples.html
/developers/integrations/payment-integration.html
*/
// {
// source: "",
// destination: "",
// permanent: true,
// },
];
},
images: {
@@ -10,7 +10,6 @@ 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
@@ -74,37 +73,9 @@ You can always use `--help` flag to see the commands or arguments associated wit
Run `./nym-node --help` to see all available commands:
<Accordion>
<AccordionItem key="1" aria-label="<code>nym-node --help</code> command output" subtitle="Press to expand" title="Command Output">
```
!-- cmdrun ../../../../target/release/nym-node --help --
Usage: nym-node [OPTIONS] <COMMAND>
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 <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
<!-- cmdrun ../../../../target/release/nym-node --help -->
```
</AccordionItem>
</Accordion>
To list all available flags for each command, run `./nym-node <COMMAND> --help` for example `./nym-node run --help`: