Skip to content

Latest commit

 

History

History
33 lines (27 loc) · 430 Bytes

README.md

File metadata and controls

33 lines (27 loc) · 430 Bytes

API 🕊️

Backend server code for ECOM .

This is made using NODE JS, GRAPHQL, & PRISMA.

Setup

1 - Install dependencies

$ npm install
## Or yarn
$ pnpm install

2 - Prisma migrate

$ npm run migrate
## Or using yarn
$ pnpm migrate

3 - Run app

## Run with nodemon

$ npm run dev
## Or using yarn
$ pnpm dev

## Run without nodemon

$ npm run start
## Or using yarn
$ pnpm start