Skip to content

Commit

Permalink
Docusaurus versioning (#2)
Browse files Browse the repository at this point in the history
* wip

* Update glossary

* review updates

* update actions

* remove path

* wip

* wip

* update version plugin

* wip

* versioning wip

* review updates

* update actions

* wip

* Update deploy-docs.yml

* Update custom-version-plugin.js

* update to versioning

* Update docusaurus.config.js

* Update deploy-docs.yml

* Update docusaurus.config.js

* wip 0.46

* wip

* Update versioning to have each version file in repo

* Update _category_.json
  • Loading branch information
samricotta authored Jul 20, 2023
1 parent 3d63a59 commit 0d04e6d
Show file tree
Hide file tree
Showing 470 changed files with 65,016 additions and 9 deletions.
2 changes: 1 addition & 1 deletion docs/integrate/_category_.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"label": "Integrate",
"position": 1,
"position": 0,
"link": null
}
48 changes: 48 additions & 0 deletions docs/integrate/building-modules/transaction_flow.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion docs/integrate/libraries/02-collections.md
Original file line number Diff line number Diff line change
Expand Up @@ -533,7 +533,7 @@ func (k Keeper) GetAllAccounts(ctx sdk.Context) ([]authtypes.BaseAccount, error)
}

func (k Keeper) IterateAccountsBetween(ctx sdk.Context, start, end uint64) ([]authtypes.BaseAccount, error) {
// The collections.Range API offers a lot of capabilities
// The collections.Range API offers a lot of capability
// like defining where the iteration starts or ends.
rng := new(collections.Range[uint64]).
StartInclusive(start).
Expand Down
2 changes: 1 addition & 1 deletion docs/user/run-node/_category_.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"label": "User Guides",
"position": 5,
"position": 0,
"link": null
}
6 changes: 0 additions & 6 deletions docusaurus.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,6 @@ const config = {
docs: {
sidebarPath: require.resolve("./sidebars.js"),
routeBasePath: "/",
lastVersion: lastVersion,
},
theme: {
customCss: require.resolve("./src/css/custom.css"),
Expand Down Expand Up @@ -78,11 +77,6 @@ const config = {
position: "left",
label: "Integrate",
},
// {
// to: "/",
// position: "left",
// label: "Validate",
// },
{
to: "/user/run-node/keyring",
position: "left",
Expand Down
28 changes: 28 additions & 0 deletions versioned_docs/version-0.45/develop/advanced-concepts/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
<!--
order: false
parent:
order: 3
-->

# Core Concepts

This repository contains reference documentation on the core concepts of the Cosmos SDK.

1. [`BaseApp`](./baseapp.md)
2. [Transaction](./transactions.md)
3. [Context](./context.md)
4. [Node Client](./node.md)
5. [Store](./store.md)
6. [Encoding](./encoding.md)
7. [gRPC, REST and Tendermint Endpoints](./grpc_rest.md)
8. [Command-Line Interface](./cli.md)
9. [Events](./events.md)
10. [Telemetry](./telemetry.md)
11. [Object-Capabilities](./ocap.md)
12. [RunTx recovery middleware](./runtx_middleware.md)
13. [Simulation](./simulation.md)
14. [Protobuf documentation](./proto-docs.md)
15. [In-Place Store Migrations](./upgrade.md)

After reading about the core concepts, check the [IBC documentation](../ibc/README.md) to learn more
about the IBC core concepts and how to integrate IBC in your application.
Loading

0 comments on commit 0d04e6d

Please sign in to comment.