71 lines
2.0 KiB
Bash
71 lines
2.0 KiB
Bash
RUST_LOG=info
|
|
# This variable forces the use of color in the logs
|
|
ZEBRA_FORCE_USE_COLOR=1
|
|
LOG_COLOR=true
|
|
|
|
###
|
|
# Configuration Variables
|
|
# These variables are used to configure the zebra node
|
|
# Check the entrypoint.sh script for more details
|
|
###
|
|
|
|
# Path and name of the config file. These two have defaults set in the Dockerfile.
|
|
ZEBRA_CONF_PATH=/etc/zebrad/zebrad.toml
|
|
# [network]
|
|
NETWORK=Mainnet
|
|
ZEBRA_LISTEN_ADDR=0.0.0.0
|
|
# [consensus]
|
|
ZEBRA_CHECKPOINT_SYNC=true
|
|
# [state]
|
|
# Set this to change the default cached state directory
|
|
ZEBRA_CACHED_STATE_DIR=/var/cache/zebrad-cache
|
|
LIGHTWALLETD_DATA_DIR=/var/cache/lwd-cache
|
|
# [metrics]
|
|
METRICS_ENDPOINT_ADDR=0.0.0.0
|
|
METRICS_ENDPOINT_PORT=9999
|
|
# [tracing]
|
|
LOG_COLOR=false
|
|
TRACING_ENDPOINT_ADDR=0.0.0.0
|
|
TRACING_ENDPOINT_PORT=3000
|
|
# [rpc]
|
|
RPC_LISTEN_ADDR=0.0.0.0
|
|
# if ${RPC_PORT} is not set, it will use the default value for the current network
|
|
# RPC_PORT=
|
|
|
|
####
|
|
# Test Variables
|
|
# These variables are used to run tests in the Dockerfile
|
|
# Check the entrypoint.sh script for more details
|
|
####
|
|
|
|
# Unit tests
|
|
# TODO: These variables are evaluated to any value, even setting a NULL value will evaluate to true
|
|
# TEST_FAKE_ACTIVATION_HEIGHTS=
|
|
# ZEBRA_SKIP_NETWORK_TESTS
|
|
# ZEBRA_SKIP_IPV6_TESTS
|
|
RUN_ALL_TESTS=
|
|
RUN_ALL_EXPERIMENTAL_TESTS=
|
|
TEST_ZEBRA_EMPTY_SYNC=
|
|
ZEBRA_TEST_LIGHTWALLETD=
|
|
# Integration Tests
|
|
# Most of these tests require a cached state directory to save the network state
|
|
TEST_DISK_REBUILD=
|
|
# These tests needs a Zebra cached state
|
|
TEST_CHECKPOINT_SYNC=
|
|
GENERATE_CHECKPOINTS_MAINNET=
|
|
GENERATE_CHECKPOINTS_TESTNET=
|
|
TEST_UPDATE_SYNC=
|
|
# These tests need a Lightwalletd binary + a Zebra cached state
|
|
TEST_LWD_RPC_CALL=
|
|
TEST_GET_BLOCK_TEMPLATE=
|
|
TEST_SUBMIT_BLOCK=
|
|
# These tests need a Lightwalletd binary + Lightwalletd cached state + a Zebra cached state
|
|
TEST_LWD_UPDATE_SYNC=
|
|
TEST_LWD_GRPC=
|
|
TEST_LWD_TRANSACTIONS=
|
|
# Full sync tests
|
|
# These tests could take a long time to run, depending on the network
|
|
FULL_SYNC_MAINNET_TIMEOUT_MINUTES=
|
|
FULL_SYNC_TESTNET_TIMEOUT_MINUTES=
|
|
TEST_LWD_FULL_SYNC=
|