Welcome to the Next.js project! This repository contains both the client and server-side code.
Working: https://drive.google.com/file/d/1cMaUJgLr_bEn3xqqMpYWXUJMHpkbjBa1/view?usp=sharing
To get the client-side of the project up and running, follow these steps:
-
Clone the repository:
git clone https://github.com/adarsharyan002/mobile-ecommerce.git
-
Navigate to the client directory:
cd client -
Install dependencies:
npm install
-
Run the development server:
npm run dev
This will start the Next.js development server.
For setting up the server-side of the project, follow these steps:
-
Navigate to the server directory:
cd server -
Install dependencies:
npm install
-
Add your mongo uri to .env file
-
Start the server:
npm start
This will start the server .
- The client-side code resides in the
clientdirectory, while the server-side code is located in theserverdirectory. - Customize and modify the code to suit your project requirements.