https://github.com/sanskar-12/most-scalable-ecommerce-platform
This is the Most Scalable Ecommerce Platform.
https://github.com/sanskar-12/most-scalable-ecommerce-platform
docker dockercompose firebase-auth ioredis mern-stack mongodb react redis scss stripe typescript
Last synced: about 2 months ago
JSON representation
This is the Most Scalable Ecommerce Platform.
- Host: GitHub
- URL: https://github.com/sanskar-12/most-scalable-ecommerce-platform
- Owner: Sanskar-12
- Created: 2024-10-11T11:51:07.000Z (12 months ago)
- Default Branch: master
- Last Pushed: 2024-12-25T16:42:34.000Z (10 months ago)
- Last Synced: 2025-02-17T06:13:07.063Z (8 months ago)
- Topics: docker, dockercompose, firebase-auth, ioredis, mern-stack, mongodb, react, redis, scss, stripe, typescript
- Language: TypeScript
- Homepage: https://most-scalable-ecommerce-platform-ll6f.vercel.app
- Size: 61 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# E-Commerce Webapp ( NovaMarket )
An E-Commerce Webapp built using the **MERN Stack** with the following technologies:
- **TypeScript** for type-safe development.
- **Express.js** for backend server.
- **Redis** for caching.
- **Docker** for containerization.---
## Features
- **Frontend**: Built with React and TypeScript.
- **Backend**: Built with Express.js and TypeScript.
- **Caching**: Integrated with Redis for improved performance.
- **Database**: MongoDB for data persistence.
- **Containerization**: Dockerized for easy deployment and scalability.
- **Firebase Auth** for Google Auth.---
## Screenshots
### Homepage

### Login/Signup Page

### Product Details Page

### Review Section

### Search Page

### Cart Page

### Payment Page ( Stripe )

### Order info Page

### Admin Dashboard Page

### Product, Order, Coupon Management Page


### Bar, Pie, Line Chart Page


---
## Setting Up the Project
### Prerequisites
Ensure you have the following installed on your system:
- Node.js (>= 16.x)
- Docker
- MongoDB---
### Steps
1. **Clone the Repository**:
```bash
https://github.com/Sanskar-12/Most-Scalable-Ecommerce-Platform.git```
2. **Setup the backend env and node modules**:
```bash
cd backend
npm install
```Make the .env file inside the root directory of backend and copy the .env.example and set up all of your envs
3. **Setup the frontend env**:
```bash
cd frontend
npm install
```
Make the .env file inside the root directory of frontend and copy the .env.example and set up all of your envs
4. **Start the app with docker**:```bash
cd ..
docker compose up -d
```OR
```bash
cd ..
docker compose watch```
5. **Another way to Start the backend**:
```bash
cd backend
npm run watch
npm run dev // on another terminal
```
6. **Another way to Start the frontend**:
```bash
cd frontend
npm run dev
```