Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/docs/08-configuration/02-config_example.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ client: # Configures client code generation.
openapi: # Configures OpenAPI spec generation for the API.
path: (string) # Relative path where the application's OpenAPI files are located.
genesis: (key/value) # Custom genesis block modifications. Follow the nesting of the genesis file here to access all the parameters.
minimal: (bool) # Indicates if the blockchain is minimal with the required Cosmos SDK modules.
default_denom: (string) # Default staking denom (default is stake).
validators: (list) # Contains information related to the list of validators and settings.
name: (string) # Name of the validator.
bonded: (string) # Amount staked by the validator.
Expand Down Expand Up @@ -86,4 +86,4 @@ validators: (list) # Contains information related to the list of validators and
sequence: (uint) # Sequence number of the signing account (offline mode only).
sign-mode: (string) # Chooses sign mode (direct|amino-json), an advanced feature.
timeout-height: (uint) # Sets a block timeout height to prevent the transaction from being committed past a certain height.
```
```
4 changes: 2 additions & 2 deletions ignite/internal/tools/gen-config-doc/cmd/root.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ const (
flagOutput = "output"
flagFilename = "filename"

defaultFilename = "03-config.md"
defaultDocPath = "docs/docs/08-references"
defaultFilename = "02-config_example.md"
defaultDocPath = "docs/docs/08-configuration"
)

// NewRootCmd creates a new root command.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
---
sidebar_position: 4
description: Configuration file example.
title: Configuration file example
sidebar_position: 2
description: Configuration File Example.
title: Configuration File Example
---

## Configuration file example
## Configuration File Example

```yaml title="config.yml"
<%= Config %>
Expand Down
Loading