This is a Next.js project bootstrapped with create-next-app.
Before you begin, ensure you have the following installed on your machine:
- Node.js (version 12.0.0 or later)
- npm (comes with Node.js)
- yarn (optional, if you prefer using yarn)
- pnpm (optional, if you prefer using pnpm)
- bun (optional, if you prefer using bun)
git clone https://github.com/Jonathan0823/ecommerce-backend.gitcd fullstack-ecommercenpm install
# or
yarn install
# or
pnpm install# development
$ npm run start
# watch mode
$ npm run start:dev
# production mode
$ npm run start:prodthe backend will be running on http://localhost:8000 check the repository for more information
git clone https://github.com/Jonathan0823/fullstack-ecommerce.gitcd fullstack-ecommercenpm install
# or
yarn install
# or
pnpm installexport const BACKEND_URL = 'http://localhost:8000';# development
$ npm run dev
# production mode
$ npm run build
$ npm run startthe frontend will be running on http://localhost:3000