π³ Recipe Book App [LIVE]
A full-stack web application where users can search, view, and save recipes.
The live app is hosted on Render for free. As a result, the backend takes ~30 seconds to boot up. Thanks for your patience!
- π User Authentication β Sign up, log in, and manage sessions using JWT.
- π½ Recipe Search β Scrapes recipes from AllRecipes with BeautifulSoup.
- π Save Favorites β Users can bookmark and manage their recipe collection.
- β‘ Full-Stack CRUD β Create, Read, Update, and Delete user data.
- π Deployed β Accessible live on Render.
Frontend: React
Backend: Django REST Framework
Database: PostgreSQL
Web Scraping: BeautifulSoup (Python)
Authentication: JWT (djangorestframework-simplejwt)
Hosting: Render
- Node.js (v18+)
- Python (v3.10+)
- PostgreSQL
cd backend
pip install -r requirements.txt
python manage.py migrate
python manage.py runservercd frontend
npm install
npm start


