forked from cerc-io/stack-orchestrator
3dc9cd584a
* Add a mobymask-v3 stack * Fix Nitro deployment script and add watcher container * Setup Nitro config * Run build after setting Nitro addresses * Setup consensus config * Add a container for web-app * Use node 18 for the web-app * Persist Nitro node data to a volume * Add clean up steps * Update query rates
35 lines
1019 B
Bash
35 lines
1019 B
Bash
# Defaults
|
|
|
|
# Set of relay peers to connect to from the relay node
|
|
DEFAULT_CERC_RELAY_PEERS=[]
|
|
|
|
# Domain to be used in the relay node's announce address
|
|
DEFAULT_CERC_RELAY_ANNOUNCE_DOMAIN=
|
|
|
|
# Base URI for mobymask-app (used for generating invite)
|
|
DEFAULT_CERC_MOBYMASK_APP_BASE_URI="http://127.0.0.1:3004/#"
|
|
|
|
# Set to false for disabling watcher peer to send txs to L2
|
|
DEFAULT_CERC_ENABLE_PEER_L2_TXS=true
|
|
|
|
# Set deployed MobyMask contract address to avoid deploying contract in stack
|
|
# mobymask-app will use this contract address in config if run separately
|
|
DEFAULT_CERC_DEPLOYED_CONTRACT=
|
|
|
|
# Chain ID is used by mobymask web-app for txs
|
|
DEFAULT_CERC_CHAIN_ID=42069
|
|
|
|
# Set of relay nodes to be used by web-apps
|
|
DEFAULT_CERC_RELAY_NODES=[]
|
|
|
|
# Set of multiaddrs to be avoided while dialling
|
|
DEFAULT_CERC_DENY_MULTIADDRS=[]
|
|
|
|
# Type of pubsub to be used
|
|
DEFAULT_CERC_PUBSUB=""
|
|
|
|
# Set deployed Nitro addresses to avoid deploying them in the stack
|
|
DEFAULT_CERC_NA_ADDRESS=
|
|
DEFAULT_CERC_VPA_ADDRESS=
|
|
DEFAULT_CERC_CA_ADDRESS=
|