Skip to content

Latest commit

 

History

History
47 lines (32 loc) · 784 Bytes

README.md

File metadata and controls

47 lines (32 loc) · 784 Bytes

Safe Client Gateway

Coverage Status

Requirements

Installation

corepack enable && yarn install

Running the app

  1. Start Redis instance. By default, it will start on port 6379 of localhost.
docker compose up -d redis
  1. Start the Safe Client Gateway
# development
yarn run start

# watch mode
yarn run start:dev

# production mode
yarn run start:prod

Test

# unit tests
yarn run test

# e2e tests
yarn run test:e2e

# test coverage
yarn run test:cov