Skip to content

Latest commit

 

History

History
49 lines (34 loc) · 679 Bytes

README.md

File metadata and controls

49 lines (34 loc) · 679 Bytes

NFT marketplace GraphQL API

Built with NestJS, TypeScript, PostgreSQL

Features

  • Login/Registration
  • User Wallet
  • List Assets in Marketplace
  • Purchase Assets

ER Diagram

ERD_nft

Installation

$ npm install

Running the app

# development
$ docker-compose up 
$ npm run start

# watch mode
$ docker-compose up
$ npm run start:dev

# production mode
$ npm run start:prod

Test

  • Implemented unit tests with jest
# unit tests
$ npm run test

# e2e tests
$ npm run test:e2e

# test coverage
$ npm run test:cov