mirror of
https://github.com/planetmint/planetmint.git
synced 2025-03-30 15:08:31 +00:00

* fixed missing abci_rpc initialization * bumped versions and added changelog * sq fixes Signed-off-by: Jürgen Eckel <juergen@riddleandcode.com>
35 lines
1.2 KiB
YAML
35 lines
1.2 KiB
YAML
---
|
|
# Copyright © 2020 Interplanetary Database Association e.V.,
|
|
# Planetmint and IPDB software contributors.
|
|
# SPDX-License-Identifier: (Apache-2.0 AND CC-BY-4.0)
|
|
# Code is Apache-2.0 and docs are CC-BY-4.0
|
|
|
|
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: "planetmint/tendermint"
|
|
tendermint_image_tag: "develop"
|
|
tendermint_docker_name: "tendermint"
|
|
planetmint_docker_name: "planetmint"
|
|
planetmint_docker_net: "planetmint_docker_net"
|
|
tendermint_host_mount_dir: "{{ home_dir }}/tendermint_docker"
|
|
tendermint_host_mount_config_dir: "{{ home_dir }}/tendermint_config"
|
|
tendermint_home: /tendermint/config
|
|
tendermint_data: /tendermint/data
|
|
tendermint_p2p_port: 26656
|
|
tendermint_rpc_port: 26657
|
|
tendermint_abci_port: 26658
|
|
|
|
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"}
|
|
]
|