https://github.com/miljan-code/dealhub
Customer-to-Customer e-commerce platform
https://github.com/miljan-code/dealhub
Last synced: 4 months ago
JSON representation
Customer-to-Customer e-commerce platform
- Host: GitHub
- URL: https://github.com/miljan-code/dealhub
- Owner: miljan-code
- Created: 2023-05-10T12:46:12.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2024-11-06T20:14:37.000Z (over 1 year ago)
- Last Synced: 2025-07-10T09:00:36.684Z (11 months ago)
- Language: TypeScript
- Homepage:
- Size: 828 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# DealHub
DealHub is a customer-to-customer e-commerce platform. It provides users with a feature-rich online marketplace where they can create accounts, list items for sale, purchase items, rate other users, engage in messaging, and enjoy various other functionalities.

## Usage
Clone this repo
```bash
git clone https://github.com/miljan-code/dealhub.git
```
Install necessary dependencies
```bash
npm install
# or
yarn
```
Add keys and secrets to .env file
```env
# AUTH
NEXTAUTH_URL=http://localhost:3000
NEXTAUTH_SECRET=
GOOGLE_CLIENT_ID=
GOOGLE_CLIENT_SECRET=
GITHUB_ID=
GITHUB_SECRET=
# DB - PlanetScale
DATABASE_URL='mysql://root:root@localhost:3500/dealhub'
# Cloudinary
NEXT_PUBLIC_CLOUDINARY_CLOUD_NAME=
```
Run the development server
```bash
npm run dev
# or
yarn dev
```
## Demo
Try it out here
[https://dealhub.miljan.xyz/](https://dealhub.miljan.xyz/)