3011a485ee
* Add steps to force rebuild and persist peers_ids volume * Update mobymask-v2 stack with pubsub option * Update watcher-ts version --------- Co-authored-by: Nabarun <nabarun@deepstacksoft.com>
2.7 KiB
2.7 KiB
Web Apps
Instructions to setup and deploy MobyMask and Peer Test web apps
Setup
Prerequisite: Watcher with GQL and relay node endpoints
Clone required repositories:
laconic-so --stack mobymask-v2 setup-repositories --include github.com/cerc-io/mobymask-ui
Build the container images:
laconic-so --stack mobymask-v2 build-containers --include cerc/react-peer,cerc/mobymask-ui
This should create the required docker images in the local image registry
Deploy
Configuration
Create and update an env file to be used in the next step (defaults):
# Set of relay nodes to be used by the web-app
# (use double quotes " for strings, avoid space after commas)
# Eg. CERC_RELAY_NODES=["/dns4/example.com/tcp/443/wss/p2p/12D3KooWGHmDDCc93XUWL16FMcTPCGu2zFaMkf67k8HZ4gdQbRDr"]
CERC_RELAY_NODES=[]
# Set of multiaddrs to be avoided while dialling
CERC_DENY_MULTIADDRS=[]
# Also add if running MobyMask app:
# Watcher endpoint used by the app for GQL queries
CERC_APP_WATCHER_URL="http://127.0.0.1:3001"
# Set deployed MobyMask contract address to be used in MobyMask app's config
CERC_DEPLOYED_CONTRACT=
# L2 Chain ID used by mobymask web-app for L2 txs
CERC_CHAIN_ID=42069
# (Optional) Type of pubsub to be used ("floodsub" | "gossipsub")
CERC_PUBSUB=""
- NOTE: If watcher is running on the host machine, use
host.docker.internal
as the hostname to access the host port
Deploy the stack
For running mobymask-app
laconic-so --stack mobymask-v2 deploy --cluster mobymask_v2 --include mobymask-app --env-file <PATH_TO_ENV_FILE> up
# Runs mobymask-app on host port 3002 and lxdao-mobymask-app on host port 3004
For running peer-test-app
laconic-so --stack mobymask-v2 deploy --cluster mobymask_v2 --include peer-test-app --env-file <PATH_TO_ENV_FILE> up
# Runs on host port 3003
To list down and monitor the running containers:
laconic-so --stack mobymask-v2 deploy --cluster mobymask_v2 --include [mobymask-app | peer-test-app] ps
# With status
docker ps -a
# Check logs for a container
docker logs -f <CONTAINER_ID>
Demo
Follow the demo to try out the MobyMask app with L2 chain
Clean up
Stop all services running in the background:
For mobymask-app
laconic-so --stack mobymask-v2 deploy --cluster mobymask_v2 --include mobymask-app down
For peer-test-app
laconic-so --stack mobymask-v2 deploy --cluster mobymask_v2 --include peer-test-app down
Clear volumes created by this stack:
# List all relevant volumes
docker volume ls -q --filter "name=mobymask_v2"
# Remove all the listed volumes
docker volume rm $(docker volume ls -q --filter "name=mobymask_v2")