This is the backend server built with NestJS powering the Arbor Protocol's dApp UI.
pnpm installFirst, copy .env.example -> .env.
# development mode
$ pnpm run dev
# start without watcher
$ pnpm run start
# production mode
$ pnpm run start:prod
# lint with ESLint
$ pnpm lint
# format with Prettier
$ pnpm format# unit tests
$ pnpm run test
# e2e tests
$ pnpm run test:e2e
# test coverage
$ pnpm run test:cov