Clone of Amazon.com is full stack web application built in a team of two that allows users to browse products, add items to the cart, and purchase
- Front-End: ReactJs, MUI, Redux + ReduxToolkit + RTK Query
- Back-End: NodeJs, ExpressJs, Prisma, PostgreSQL (will add Python & Java version in future)
-
Home Page
cd frontend && yarn install
- node:
cd backend/node && yarn install
-
Generate Schema:
prisma generate
-
Update Datebase:
prisma db push
-
Frontend:
cd frontend && yarn start
-
Backend(Node):
cd backend/backend && yarn start
-
Database Setup:
- create
.env
file and put it inbackend/node
, writedb uri
in it, sample:DATABASE_URL="postgres://username:password@host:port/database"
- create