diff --git a/.github/workflows/linkchecker.yml b/.github/workflows/linkchecker.yml new file mode 100644 index 0000000..bc4c3ad --- /dev/null +++ b/.github/workflows/linkchecker.yml @@ -0,0 +1,19 @@ +name: Check Markdown links + +on: + pull_request: + push: + branches: + - master + - develop + schedule: + - cron: '* */24 * * *' + +jobs: + markdown-link-check: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@master + - uses: gaurav-nelson/github-action-markdown-link-check@1.0.13 + with: + folder-path: "." diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md new file mode 100644 index 0000000..02d3f84 --- /dev/null +++ b/CONTRIBUTING.md @@ -0,0 +1,3 @@ +# Contributing + +TODO: add context \ No newline at end of file diff --git a/docs/Explanation/ADR/README.md b/docs/Explanation/ADR/README.md index ac9496c..f73050b 100644 --- a/docs/Explanation/ADR/README.md +++ b/docs/Explanation/ADR/README.md @@ -36,4 +36,4 @@ When writing ADRs, follow the same best practices for writing RFCs. When writing ## ADR Table of Contents -- [ADR XXX: Self Sovereign Identity](./adr-001-self-sovereign-identity.md) \ No newline at end of file +- [ADR 002: Documentation Structure](./adr-002-docs-structure.md) \ No newline at end of file diff --git a/docs/Explanation/README.md b/docs/Explanation/README.md index e8cba67..958e3e4 100644 --- a/docs/Explanation/README.md +++ b/docs/Explanation/README.md @@ -24,28 +24,12 @@ For further background information please see [the ADR relating to the documenta The scope and structure of the Explanation documentation follows this layout. -### Topics - -Topics are discursive documents that explore some particular feature or theme. For example, an article might investigate Decentralised Identity Documents or Self-Sovereign Identity. - -To contribute, create a folder in [topics](./topics) with a self-descriptive name. Add your content as needed. - -### Presentations - -The [Presentations](PRESENTATIONS.md) file describes and links to presentations about Budget module at various events. Presentations also include YouTube videos, podcasts, interviews, and so on. - - ### Architecture Decisions Records (ADRs) ADRs are the mechanism for contributors to raise design proposals. In turn, the ADRs explain for subsequent contributors the rationale behind Budget module design and implementation. For example, [ADR 002: Documentation Structure](./ADR/adr-002-docs-structure.md) explains why the Budget module documentation structure was chosen. See the Architecture Decision Records (ADR) [README](./ADR/README.md) file for more details about how to raise and propose an ADR. -### Articles - -This folder contains all articles relating to Budget module, includes papers, blog posts, and so on. For details, see [Articles README](articles/README.md). - - ## Discussions The explanation content includes articles, topics, and so on, and also includes discussion on relevant channels, including [Pull Requests](https://github.com/tendermint/budget/pulls) and [Issues](https://github.com/tendermint/budget/issues). Important Pull Requests are listed in this document. @@ -57,7 +41,7 @@ Future: Budget module currently doesn't have a Discord or Telegram Channel. When * All documentation is written following [Google Documentation Best Practice](https://google.github.io/styleguide/docguide/best_practices.html) * Autogenerate documentation from the code whenever possible. * Raise a PR for all documentation changes -* Follow our [Code of Conduct](../CONTRIBUTING.md) +* Follow our [Code of Conduct](../../CONTRIBUTING.md) ## Reference diff --git a/docs/How-To/api/README.md b/docs/How-To/api/README.md index 6d0226f..a3e4c55 100644 --- a/docs/How-To/api/README.md +++ b/docs/How-To/api/README.md @@ -9,10 +9,10 @@ Description: A high-level overview of gRPC-gateway REST Routes in budget module. ## gRPC-gateway REST Routes -In order to test out the following REST routes, you need to set up a local node to query from. You can refer to this [localnet tutorial](./Tutorials/localnet) on how to build `budgetd` binary and bootstrap a local network in your local machine. +In order to test out the following REST routes, you need to set up a local node to query from. You can refer to this [localnet tutorial](../../Tutorials/localnet) on how to build `budgetd` binary and bootstrap a local network in your local machine. Query the values set as budget parameters -http://localhost:1317/cosmos/budget/v1beta1/params +http://localhost:1317/cosmos/budget/v1beta1/params ```json { @@ -33,7 +33,7 @@ http://localhost:1317/cosmos/budget/v1beta1/params ``` Query all the budget plans exist in the network -http://localhost:1317/cosmos/budget/v1beta1/budgets +http://localhost:1317/cosmos/budget/v1beta1/budgets ```json { diff --git a/docs/How-To/cli/README.md b/docs/How-To/cli/README.md index 5675e8b..159a059 100644 --- a/docs/How-To/cli/README.md +++ b/docs/How-To/cli/README.md @@ -9,7 +9,7 @@ This document provides a high-level overview of how the command-line (CLI) inter ## Command-Line Interfaces -In order to test out the following command-line interfaces, you need to set up a local node to either send transaction or query from. You can refer to this [localnet tutorial](./Tutorials/localnet) on how to build `budgetd` binary and bootstrap a local network in your local machine. +In order to test out the following command-line interfaces, you need to set up a local node to either send transaction or query from. You can refer to this [localnet tutorial](../../Tutorials/localnet) on how to build `budgetd` binary and bootstrap a local network in your local machine. - [Transaction N/A](#Transaction) - [Query](#Query) diff --git a/docs/README.md b/docs/README.md index 6bec7cb..502fcfb 100644 --- a/docs/README.md +++ b/docs/README.md @@ -16,7 +16,6 @@ This approach outlines four specific use cases for documentation: * [Tutorials](./Tutorials/README.md) * [How-Tos](./How-To/README.md) * [Explanation](./Explanation/README.md) -* [Reference](./Reference/README.md) For further background please see [the ADR relating to the documentation structure](./Explanation/ADR/adr-002-docs-structure.md). diff --git a/docs/Tutorials/demo/README.md b/docs/Tutorials/demo/README.md index e76bf57..8bc4e2f 100644 --- a/docs/Tutorials/demo/README.md +++ b/docs/Tutorials/demo/README.md @@ -1,3 +1,4 @@ # Demo + - [Budget & Farming MVP demo](https://github.com/tendermint/farming/blob/master/docs/Tutorials/demo/budget_with_farming.md) \ No newline at end of file