A simple and interactive web application that suggests recipes based on the ingredients you have at home.
- 🔍 Enter ingredients (e.g., rice, tomato, egg)
- 🍲 Get matching recipes instantly
- 💡 Simple and clean user interface
- ⚡ Fast and lightweight
- Frontend: HTML, CSS, JavaScript
- Backend: Python (Flask)
- Data Storage: JSON
smart-recipe-generator/
│
├── app.py
├── recipes.json
├── templates/
│ └── index.html
├── static/
│ ├── style.css
│ ├── script.js
│ └── images/
│ └── bg.jpg
git clone https://github.com/aaryaj154/Recipe-generator.git
cd Recipe-generator
pip install flask
python app.py
http://127.0.0.1:5000
- User enters ingredients
- The app compares them with recipes stored in
recipes.json - Matching recipes are displayed with a match percentage
- 🤖 AI-based recipe suggestions
- 🖼️ Add images for recipes
- 📊 Improve matching algorithm
- 🌐 Deploy the app online
Aarya Jain