|
Publish / Build and publish (push) Successful in 55s
Details
Deploy Test / Run deploy test suite (push) Successful in 3m36s
Details
K8s Deploy Test / Run deploy test suite (push) Failing after 3m11s
Details
Webapp Test / Run webapp test suite (push) Failing after 4m21s
Details
Smoke Test / Run basic test suite (push) Successful in 4m4s
Details
* Upgrade merkl and sushi watcher versions * Set gqlPath to base URL and remove filling start block * Upgrade watcher versions to 0.1.4 |
||
|---|---|---|
| .. | ||
| README.md | ||
| stack.yml | ||
README.md
SushiSwap v3 Watcher
Setup
Clone required repositories:
laconic-so --stack sushiswap-v3 setup-repositories --git-ssh --pull
Build the container images:
laconic-so --stack sushiswap-v3 build-containers
Deploy
Configuration
Create and update an env file to be used in the next step:
# External Filecoin (ETH RPC) endpoint to point the watcher
CERC_ETH_RPC_ENDPOINT=
Deploy the stack
laconic-so --stack sushiswap-v3 deploy --cluster sushiswap_v3 --env-file <PATH_TO_ENV_FILE> up
-
To list down and monitor the running containers:
laconic-so --stack sushiswap-v3 deploy --cluster sushiswap_v3 ps # With status docker ps -a # Check logs for a container docker logs -f <CONTAINER_ID>
Clean up
Stop all the services running in background:
laconic-so --stack sushiswap-v3 deploy --cluster sushiswap_v3 down
Clear volumes created by this stack:
# List all relevant volumes
docker volume ls -q --filter "name=sushiswap_v3"
# Remove all the listed volumes
docker volume rm $(docker volume ls -q --filter "name=sushiswap_v3")