https://github.com/sreyas-b-anand/dbms-mini-project
An online auction platform
https://github.com/sreyas-b-anand/dbms-mini-project
flask javascript mysql python react shadcn-ui tailwindcss
Last synced: 3 months ago
JSON representation
An online auction platform
- Host: GitHub
- URL: https://github.com/sreyas-b-anand/dbms-mini-project
- Owner: sreyas-b-anand
- License: mit
- Created: 2025-02-18T17:00:21.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-07-08T14:48:29.000Z (12 months ago)
- Last Synced: 2025-08-03T19:39:28.868Z (11 months ago)
- Topics: flask, javascript, mysql, python, react, shadcn-ui, tailwindcss
- Language: JavaScript
- Homepage:
- Size: 376 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# BidSnap - Online Auction System
BidSnap is an online auction platform where users can bid on various items. The system is built using a modern tech stack including React, Vite, Flask, and MySQL.
## Table of Contents
- [Features](#features)
- [Tech Stack](#tech-stack)
- [Installation](#installation)
- [Usage](#usage)
- [License](#license)
## Features
- User Authentication (Sign Up, Login, Logout)
- Bid on items
- View bid history
- User profile management
- Responsive design
## Tech Stack
**Client:**
- React
- Vite
- Tailwind CSS
**Server:**
- Flask
- MySQL
## Installation
### Prerequisites
- Node.js
- Python 3.x
- MySQL
Clone the repository
```sh
git clone https://github.com/sreyas-b-anand/dbms-mini-project.git
### Client
1. Navigate to the `client` directory:
```sh
cd client
```
2. Install dependencies:
```sh
npm install
```
3. Start the development server:
```sh
npm run dev
```
### Server
1. Navigate to the directory:
```sh
cd server
```
2. Create a `.env` file and add your MySQL database credentials:
```env
DB_HOST=your_db_host
DB_USER=your_db_user
DB_PASSWORD=your_db_password
DB_DATABASE=your_db_name
```
3. Install dependencies:
```sh
pip install -r requirements.txt
```
4. Start the Flask server:
```sh
python main.py
```
## Usage
1. Open your browser and navigate to `http://localhost:5173` to access the client.
2. Use `http://localhost:5000` for server-side API requests.
## License
This project is licensed under the MIT License.