Skip to content

Commit

Permalink
fix(readme): Update binary usage examples (#3474)
Browse files Browse the repository at this point in the history
  • Loading branch information
NikVolf authored Nov 10, 2023
1 parent b5b4028 commit b353d0f
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,19 +66,25 @@ Gear node can run in a single Dev Net mode or you can create a Multi-Node local
- **Linux x64**: [gear-nightly-x86_64-unknown-linux-gnu.tar.xz](https://get.gear.rs/gear-nightly-x86_64-unknown-linux-gnu.tar.xz)
- **Windows x64**: [gear-nightly-x86_64-pc-windows-msvc.zip](https://get.gear.rs/gear-nightly-x86_64-pc-windows-msvc.zip)

2. Run Gear node without special arguments to get a node connected to the testnet:
2. Run Gear node without special arguments to get a node connected to the test network:

```bash
gear
```

3. One may run a local node in development mode for testing purposes. This node will not be connected to any external network. Use `--dev` argument for running the node locally and storing the state in temporary storage:
3. Connect to the Vara network:

```bash
gear --chain=vara
```

4. One may run a local node in development mode for testing purposes. This node will not be connected to any external network. Use `--dev` argument for running the node locally and storing the state in temporary storage:

```bash
gear --dev
```

4. Get more info about usage details, flags, available options and subcommands:
5. Get more info about usage details, flags, available options and subcommands:

```bash
gear --help
Expand Down

0 comments on commit b353d0f

Please sign in to comment.