Skip to content

Latest commit

 

History

History
43 lines (30 loc) · 903 Bytes

README.md

File metadata and controls

43 lines (30 loc) · 903 Bytes

<<<<<<< HEAD

NFT-MarketPlace-BackEnd

This is a demo implementation for openSea MarketPlace(Backend Part)

marketplace-api

This repository contains api to retrieve marketplace data for matic network marketplace

setup

Installation

$ git clone https://github.com/maticnetwork/marketplace-api
$ cd marketplace-api
$ nvm use
$ npm install

# setup and start PostgreSQL
# follow prisma/README.md for database client setup

Configure environment

You need to configure your environment variables now. Copy .env.example and rename as .env. Now provide values for the keys mentioned there.

Development

# apply migrations
$ npm run migrate-up

# start the development server with hot reload
$ npm run dev

# create migration for database schema changes
$ npm run migrate-save

database

Refer to readme.md

origin/ERC1155