mirror of
https://github.com/fluencelabs/tendermint
synced 2025-06-22 17:31:34 +00:00
docs: add abci spec
This commit is contained in:
@ -289,4 +289,4 @@ its own pattern of messages.
|
|||||||
For more information, see the `application developers
|
For more information, see the `application developers
|
||||||
guide <./app-development.html>`__. For examples of running an ABCI
|
guide <./app-development.html>`__. For examples of running an ABCI
|
||||||
app with Tendermint, see the `getting started
|
app with Tendermint, see the `getting started
|
||||||
guide <./getting-started.html>`__.
|
guide <./getting-started.html>`__. Next is the ABCI specification.
|
||||||
|
45
docs/conf.py
45
docs/conf.py
@ -171,29 +171,38 @@ texinfo_documents = [
|
|||||||
'Database'),
|
'Database'),
|
||||||
]
|
]
|
||||||
|
|
||||||
repo = "https://raw.githubusercontent.com/tendermint/tools/"
|
# ---- customization -------------------------
|
||||||
branch = "master"
|
|
||||||
|
|
||||||
tools = "./tools"
|
tools_repo = "https://raw.githubusercontent.com/tendermint/tools/"
|
||||||
assets = tools + "/assets"
|
tools_branch = "master"
|
||||||
|
|
||||||
if os.path.isdir(tools) != True:
|
tools_dir = "./tools"
|
||||||
os.mkdir(tools)
|
assets_dir = tools_dir + "/assets"
|
||||||
if os.path.isdir(assets) != True:
|
|
||||||
os.mkdir(assets)
|
|
||||||
|
|
||||||
urllib.urlretrieve(repo+branch+'/ansible/README.rst', filename=tools+'/ansible.rst')
|
if os.path.isdir(tools_dir) != True:
|
||||||
urllib.urlretrieve(repo+branch+'/ansible/assets/a_plus_t.png', filename=assets+'/a_plus_t.png')
|
os.mkdir(tools_dir)
|
||||||
|
if os.path.isdir(assets_dir) != True:
|
||||||
|
os.mkdir(assets_dir)
|
||||||
|
|
||||||
urllib.urlretrieve(repo+branch+'/docker/README.rst', filename=tools+'/docker.rst')
|
urllib.urlretrieve(tools_repo+tools_branch+'/ansible/README.rst', filename=tools_dir+'/ansible.rst')
|
||||||
|
urllib.urlretrieve(tools_repo+tools_branch+'/ansible/assets/a_plus_t.png', filename=assets_dir+'/a_plus_t.png')
|
||||||
|
|
||||||
urllib.urlretrieve(repo+branch+'/mintnet-kubernetes/README.rst', filename=tools+'/mintnet-kubernetes.rst')
|
urllib.urlretrieve(tools_repo+tools_branch+'/docker/README.rst', filename=tools_dir+'/docker.rst')
|
||||||
urllib.urlretrieve(repo+branch+'/mintnet-kubernetes/assets/gce1.png', filename=assets+'/gce1.png')
|
|
||||||
urllib.urlretrieve(repo+branch+'/mintnet-kubernetes/assets/gce2.png', filename=assets+'/gce2.png')
|
|
||||||
urllib.urlretrieve(repo+branch+'/mintnet-kubernetes/assets/statefulset.png', filename=assets+'/statefulset.png')
|
|
||||||
urllib.urlretrieve(repo+branch+'/mintnet-kubernetes/assets/t_plus_k.png', filename=assets+'/t_plus_k.png')
|
|
||||||
|
|
||||||
urllib.urlretrieve(repo+branch+'/terraform-digitalocean/README.rst', filename=tools+'/terraform-digitalocean.rst')
|
urllib.urlretrieve(tools_repo+tools_branch+'/mintnet-kubernetes/README.rst', filename=tools_dir+'/mintnet-kubernetes.rst')
|
||||||
urllib.urlretrieve(repo+branch+'/tm-bench/README.rst', filename=tools+'/benchmarking-and-monitoring.rst')
|
urllib.urlretrieve(tools_repo+tools_branch+'/mintnet-kubernetes/assets/gce1.png', filename=assets_dir+'/gce1.png')
|
||||||
|
urllib.urlretrieve(tools_repo+tools_branch+'/mintnet-kubernetes/assets/gce2.png', filename=assets_dir+'/gce2.png')
|
||||||
|
urllib.urlretrieve(tools_repo+tools_branch+'/mintnet-kubernetes/assets/statefulset.png', filename=assets_dir+'/statefulset.png')
|
||||||
|
urllib.urlretrieve(tools_repo+tools_branch+'/mintnet-kubernetes/assets/t_plus_k.png', filename=assets_dir+'/t_plus_k.png')
|
||||||
|
|
||||||
|
urllib.urlretrieve(tools_repo+tools_branch+'/terraform-digitalocean/README.rst', filename=tools_dir+'/terraform-digitalocean.rst')
|
||||||
|
urllib.urlretrieve(tools_repo+tools_branch+'/tm-bench/README.rst', filename=tools_dir+'/benchmarking-and-monitoring.rst')
|
||||||
# the readme for below is included in tm-bench
|
# the readme for below is included in tm-bench
|
||||||
# urllib.urlretrieve('https://raw.githubusercontent.com/tendermint/tools/master/tm-monitor/README.rst', filename='tools/tm-monitor.rst')
|
# urllib.urlretrieve('https://raw.githubusercontent.com/tendermint/tools/master/tm-monitor/README.rst', filename='tools/tm-monitor.rst')
|
||||||
|
|
||||||
|
#### abci spec #################################
|
||||||
|
|
||||||
|
abci_repo = "https://raw.githubusercontent.com/tendermint/abci/"
|
||||||
|
abci_branch = "spec-docs"
|
||||||
|
|
||||||
|
urllib.urlretrieve(abci_repo+abci_branch+'/specification.rst', filename='abci-spec.rst')
|
||||||
|
@ -53,6 +53,7 @@ Tendermint 102
|
|||||||
:maxdepth: 2
|
:maxdepth: 2
|
||||||
|
|
||||||
abci-cli.rst
|
abci-cli.rst
|
||||||
|
abci-spec.rst
|
||||||
app-architecture.rst
|
app-architecture.rst
|
||||||
app-development.rst
|
app-development.rst
|
||||||
how-to-read-logs.rst
|
how-to-read-logs.rst
|
||||||
|
Reference in New Issue
Block a user