Skip to content

Commit

Permalink
Merge pull request #716 from NumlStudentSE/patch-2
Browse files Browse the repository at this point in the history
Update README.md
  • Loading branch information
swaraj-das authored Nov 1, 2024
2 parents 63862a3 + d8640f0 commit 5de842a
Showing 1 changed file with 50 additions and 6 deletions.
56 changes: 50 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,21 +33,65 @@ A <b> responsive and dynamic website </b> to showcase the best gaming accessorie



## πŸ’» Technologies Used
<p>
## πŸ’» Technologies Used ( Frontend )
<p align="center">
<a href="https://skillicons.dev">
<img margin="8px" src="https://skillicons.dev/icons?i=html,css,js" />
<img src="https://skillicons.dev/icons?i=html,css,js" />
</a>
</p>

## πŸ’» Technologies Used ( Backend & Docker Functionality )

## πŸš€ Demo
#### Check out the live demo here ⬇️ :
- 🟒 **Node.js** and **Express** for the backend
- πŸƒ **MongoDB** for database storage
- 🐳 **Docker** for containerization

https://collect-your-gamingtools.netlify.app/
<p align="center">
<a href="https://skillicons.dev">
<img src="https://skillicons.dev/icons?i=nodejs,express,mongodb,docker" alt="Node.js, Express, MongoDB, Docker" />
</a>
</p>

## βš™οΈ Backend Setup
1. Clone the repository:
```bash
git clone https://github.com/username/collect-your-gamingtools.git
```

2. Install dependencies:
```bash
cd collect-your-gamingtools
npm install
```

3. Configure environment variables:
Create a .env file with:
```bash
MONGO_URI=your_mongodb_uri
JWT_SECRET=your_jwt_secret
PORT=5000
```

4. Start the server:
```bash
npm start
```

## 🐳 Docker
Build the Docker image:
```bash
docker build -t gamingtools-backend .
```

Run the container:
```bash
docker run -d -p 5000:5000 --env-file .env gamingtools-backend
```

## πŸš€ Demo
#### Check out the live demo here ⬇️ :

https://collect-your-gamingtools.netlify.app/

## πŸ› οΈ Installation
#### To get started, simply clone the repository and open it in your browser:
Expand Down

0 comments on commit 5de842a

Please sign in to comment.