# Recipe Sharing System
A web-based platform where users can share, view, and explore a variety of recipes. This project is built using **Django**, **HTML**, **CSS**, and **Bootstrap**.
---
## Features
- User authentication (login/logout).
- Add, edit, and delete recipes.
- View detailed recipe information.
- Responsive design using Bootstrap.
- Recipe images upload functionality.
- Recipe view count to track popularity.
---
## Installation
### Prerequisites
- Python (version 3.10 or higher recommended)
- pip (Python package manager)
- Virtual environment (optional but recommended)
### Steps to Install
1. Clone the repository:
```bash
git clone https://github.com/username/Recipe_Sharing_System.git
cd Recipe_Sharing_System
python -m venv myenv
source myenv/bin/activate # On Linux/Mac
myenv\Scripts\activate # On Windows
pip install -r Requirements.txt
python manage.py migrate
python manage.py runserver
http://127.0.0.1:8000/
Recipe_Sharing_System/
├── dccl/ # Project settings
├── polls/ # Application files (views, models, etc.)
├── media/ # Uploaded recipe images
├── templates/ # HTML templates
├── static/ # CSS, JS, and images
├── db.sqlite3 # SQLite database
├── Requirements.txt # Project dependencies
└── README.md # Project documentation


Contributions are welcome! Follow these steps to contribute:
git checkout -b feature-name
git commit -m "Add feature-name"
git push origin feature-name