stack-orchestrator/stack_orchestrator/data/stacks/sushiswap
jonathan@vulcanize.io af1167234c
Some checks failed
Lint Checks / Run linter (push) Failing after 0s
changing image names for lotus
2024-04-26 15:43:25 +00:00
..
README.md Rename app -> stack_orchestrator (#625) 2023-11-07 00:06:55 -07:00
smoke-tests.md Rename app -> stack_orchestrator (#625) 2023-11-07 00:06:55 -07:00
stack.yml changing image names for lotus 2024-04-26 15:43:25 +00:00

SushiSwap

Setup

Clone required repositories:

laconic-so --stack sushiswap setup-repositories --git-ssh

Build the container images:

laconic-so --stack sushiswap build-containers

Deploy

Deploy the stack:

laconic-so --stack sushiswap deploy --cluster sushiswap up

Note: When running for the first time (or after clean up), the services will take some time to start as Lotus nodes in the fixturenet download the proof params

Tests

Follow smoke-tests.md to run smoke tests

Clean up

Stop all the services running in background:

laconic-so --stack sushiswap deploy --cluster sushiswap down

Clear volumes created by this stack:

# List all relevant volumes
docker volume ls -q --filter "name=sushiswap"

# Remove all the listed volumes
docker volume rm $(docker volume ls -q --filter "name=sushiswap")