Browse Source

docs: add a footer to guides (#3835)

pull/3847/head
Anton Kaliaev 5 years ago
committed by GitHub
parent
commit
a4e0a46b73
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 22 additions and 4 deletions
  1. +11
    -2
      docs/guides/go-built-in.md
  2. +11
    -2
      docs/guides/go.md

+ 11
- 2
docs/guides/go-built-in.md View File

@ -1,4 +1,6 @@
# 1 Guide Assumptions
# Creating a built-in application in Go
## Guide assumptions
This guide is designed for beginners who want to get started with a Tendermint
Core application from scratch. It does not assume that you have any prior
@ -17,7 +19,7 @@ yourself with the syntax.
By following along with this guide, you'll create a Tendermint Core project
called kvstore, a (very) simple distributed BFT key-value store.
# 1 Creating a built-in application in Go
## Built-in app vs external app
Running your application inside the same process as Tendermint Core will give
you the best possible performance.
@ -628,3 +630,10 @@ $ curl -s 'localhost:26657/abci_query?data="tendermint"'
"dGVuZGVybWludA==" and "cm9ja3M=" are the base64-encoding of the ASCII of
"tendermint" and "rocks" accordingly.
## Outro
I hope everything went smoothly and your first, but hopefully not the last,
Tendermint Core application is up and running. If not, please [open an issue on
Github](https://github.com/tendermint/tendermint/issues/new/choose). To dig
deeper, read [the docs](https://tendermint.com/docs/).

+ 11
- 2
docs/guides/go.md View File

@ -1,4 +1,6 @@
# 1 Guide Assumptions
# Creating an application in Go
## Guide Assumptions
This guide is designed for beginners who want to get started with a Tendermint
Core application from scratch. It does not assume that you have any prior
@ -17,7 +19,7 @@ yourself with the syntax.
By following along with this guide, you'll create a Tendermint Core project
called kvstore, a (very) simple distributed BFT key-value store.
# 1 Creating an application in Go
## Built-in app vs external app
To get maximum performance it is better to run your application alongside
Tendermint Core. [Cosmos SDK](https://github.com/cosmos/cosmos-sdk) is written
@ -512,3 +514,10 @@ $ curl -s 'localhost:26657/abci_query?data="tendermint"'
"dGVuZGVybWludA==" and "cm9ja3M=" are the base64-encoding of the ASCII of
"tendermint" and "rocks" accordingly.
## Outro
I hope everything went smoothly and your first, but hopefully not the last,
Tendermint Core application is up and running. If not, please [open an issue on
Github](https://github.com/tendermint/tendermint/issues/new/choose). To dig
deeper, read [the docs](https://tendermint.com/docs/).

Loading…
Cancel
Save