55 lines
1.6 KiB
Bash
55 lines
1.6 KiB
Bash
#LiteProtocolTester run configurator
|
|
|
|
# Docker image of lite-protocol-tester if different than used default
|
|
#LPT_IMAGE=
|
|
|
|
# Define number of publisher and receiver nodes to run.
|
|
NUM_PUBLISHER_NODES=1
|
|
NUM_RECEIVER_NODES=1
|
|
|
|
|
|
# Can add some seconds delay before SENDER starts publishing
|
|
# Useful to let RECEIVER nodes to setup and subscribe ahead of expected messages being sent.
|
|
START_PUBLISHING_AFTER=60
|
|
|
|
# Define number of messages to be sent by each publisher node.
|
|
# Set 0 for infinite number of messages
|
|
NUM_MESSAGES=100
|
|
|
|
# ms delay between messages - when setting this consider RLN if applied to the network use will use.
|
|
DELAY_MESSAGES=1000
|
|
|
|
# Define message size range in bytes - publisher node will randomly generate message size between these values.
|
|
MIN_MESSAGE_SIZE=15Kb
|
|
MAX_MESSAGE_SIZE=145Kb
|
|
|
|
|
|
# You can define service peers for publishers and receivers if you know ahead the exact peers. Specify either with multiaddress or ENR.
|
|
#LIGHTPUSH_SERVICE_PEER=
|
|
#FILTER_SERVICE_PEER=
|
|
|
|
# ...or you can define bootstrap to locate service peers on the network, specify either with multiaddress or ENR.
|
|
#LIGHTPUSH_BOOTSTRAP=
|
|
#FILTER_BOOTSTRAP=
|
|
|
|
# Predefined values for different fleets - or set according to your needs
|
|
## for wakusim
|
|
#PUBSUB=/waku/2/rs/66/0
|
|
#CONTENT_TOPIC=/tester/2/light-pubsub-test/wakusim
|
|
#CLUSTER_ID=66
|
|
|
|
## for status.prod
|
|
#PUBSUB=/waku/2/rs/16/32
|
|
#CONTENT_TOPIC=/tester/2/light-pubsub-test/fleet
|
|
#CLUSTER_ID=16
|
|
|
|
## for status.staging
|
|
#PUBSUB=/waku/2/rs/16/32
|
|
#CONTENT_TOPIC=/tester/2/light-pubsub-test/fleet
|
|
#CLUSTER_ID=16
|
|
|
|
## for TWN/waku.sandbox
|
|
#PUBSUB=/waku/2/rs/1/4
|
|
#CONTENT_TOPIC=/tester/2/light-pubsub-test/twn
|
|
#CLUSTER_ID=1
|