- Node 16.16.0 – https://nodejs.org/en/
- Docker Compose – https://docs.docker.com/compose/
corepack enable && yarn install
- Start Redis instance. By default, it will start on port
6379
oflocalhost
.
docker compose up -d redis
- Start the Safe Client Gateway
# development
yarn run start
# watch mode
yarn run start:dev
# production mode
yarn run start:prod
# unit tests
yarn run test
# e2e tests
yarn run test:e2e
# test coverage
yarn run test:cov