docs: display rfc in docs (#15355)

This commit is contained in:
Julien Robert 2023-03-10 22:54:33 +01:00 committed by GitHub
parent 16a5404f8e
commit 00154fec38
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 7 additions and 2 deletions

1
docs/.gitignore vendored
View File

@ -13,6 +13,7 @@ docs/node_modules
docs/docs/modules
docs/docs/spec
docs/docs/architecture
docs/docs/rfc
docs/docs/tooling/01-cosmovisor.md
docs/docs/tooling/02-depinject.md
docs/docs/tooling/03-confix.md

View File

@ -6,7 +6,7 @@ sidebar_position: 1
It is known that Cosmos SDK uses protocol buffers extensively, this docuemnt is meant to provide a guide on how it is used in the cosmos-sdk.
To generate the proto file, the Cosmos SDK uses a docker image, this image is provided to all to use as well. The latest version is `ghcr.io/cosmos/proto-builder:0.11.2`
To generate the proto file, the Cosmos SDK uses a docker image, this image is provided to all to use as well. The latest version is `ghcr.io/cosmos/proto-builder:0.12.x`
Below is the example of the Cosmos SDK's commands for generating, linting, and formatting protobuf files that can be reused in any applications makefile.

View File

@ -8,4 +8,5 @@ rm -rf docs/tooling/04-hubl.md
rm -rf docs/run-node/04-rosetta.md
rm -rf docs/architecture
rm -rf docs/spec
rm -rf docs/rfc
rm -rf versioned_docs versioned_sidebars versions.json

View File

@ -30,4 +30,7 @@ cp ../tools/rosetta/README.md ./docs/run-node/04-rosetta.md
cp -r ./architecture ./docs
## Add spec documentation
cp -r ./spec ./docs
cp -r ./spec ./docs
## Add rfc documentation
cp -r ./rfc ./docs