mirror of
https://github.com/bigchaindb/bigchaindb.git
synced 2024-10-13 13:34:05 +00:00
* Problem: No automated way to set up a dev/test network * Problem: docs not updated for stack, ansible and docker based dev environments * Problem: Using apt triggers java runtime installation on MacOS - Update pre_tasks in ansible - Update bigchaindb-stop playbook to handle pre_tasks * Update Tendermint version to 0.19.3 from 0.19.2 * Update tendermint version to 0.19.3 everywhere else * Problem: Sphinx warns about duplicate section labels Solution: Don't use sphinx.ext.autosectionlabel * Problem: Sphinx complains that run-node-with-docker not in any TOC Solution: Add run-node-with-docker to a TOC (i.e. to an index.rst file) * Tendermint has not tagged `0.19.3` container * Problem: Internal hyperlinks to new pages not working Solution: Add .html to the ends of the filename strings * Problem: Invalid script imports * Problem: Invalid comparison for supported OS version * Addressing comments I * Problem: No way to configure dev/forked repo for developers * Problem: Docs not updated with STACK_REPO parameter * Addressing comments II
27 lines
949 B
YAML
27 lines
949 B
YAML
dependencies_key_exchange:
|
|
- nginx
|
|
- jq
|
|
|
|
tendermint_binary_url: "https://github.com/tendermint/tendermint/releases/download/v{{ tm_version }}/tendermint_{{ tm_version }}_linux_amd64.zip"
|
|
|
|
# Docker configuration
|
|
tendermint_image_name: "bigchaindb/tendermint"
|
|
tendermint_image_tag: "develop"
|
|
tendermint_docker_name: "tendermint"
|
|
bigchaindb_docker_name: "bigchaindb"
|
|
bigchaindb_docker_net: "bigchaindb_docker_net"
|
|
tendermint_host_mount_dir: "{{ home_dir }}/tendermint_docker"
|
|
tendermint_host_mount_config_dir: "{{ home_dir }}/tendermint_config"
|
|
tendermint_home: /tendermint/config
|
|
tendermint_p2p_port: 46656
|
|
tendermint_rpc_port: 46657
|
|
tendermint_abci_port: 46658
|
|
|
|
directories:
|
|
- "{{ tendermint_home }}"
|
|
|
|
tendermint_conf_files: [
|
|
{ src: "genesis.json", dest: "{{ tendermint_home }}/genesis.json"},
|
|
{ src: "config.toml", dest: "{{ tendermint_home}}/config.toml"},
|
|
{ src: "access_pub_key.conf", dest: "/etc/nginx/conf.d/access_pub_key.conf"}
|
|
] |