6b62247ef7
* Add an option to pass env file to deploy command * Use env variable mapping in fixturenet-optimism stack * Use default values from checked in env files * Use env variable mapping in mobymask-v2 stack * Update instructions * Add extra hosts in app compose files and update instructions * Add CERC prefix to env variables in fixturenet-optimism stack * Add CERC prefix to env variables in mobymask-v2 stack
23 lines
800 B
Bash
23 lines
800 B
Bash
# Defaults
|
|
|
|
# Watcher endpoint
|
|
DEFAULT_CERC_WATCHER_HOST="mobymask-watcher-server"
|
|
DEFAULT_CERC_WATCHER_PORT=3001
|
|
DEFAULT_CERC_APP_WATCHER_URL="http://localhost:3001"
|
|
|
|
# Base URI for mobymask-app (used for generating invite)
|
|
DEFAULT_CERC_MOBYMASK_APP_BASE_URI="http://127.0.0.1:3002/#"
|
|
|
|
# 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 relay nodes to be used by web-apps
|
|
DEFAULT_CERC_RELAY_NODES=["/ip4/127.0.0.1/tcp/9090/ws/p2p/12D3KooWSPCsVkHVyLQoCqhu2YRPvvM7o6r6NRYyLM5zeA6Uig5t"]
|