Nutribite is a web-based platform for recipe and food item search. • Built using Django, a robust and reliable web framework for seamless API integration. • Users can browse a vast collection of recipes, filter search results by cuisine, meal type, dietary preferences, and country of origin, and save their favorite recipes. • The platform has an intuitive and user-friendly interface.
1.Create a virtual environment:
python -m venv venv
-
Activate the virtual environment: On Windows:
venv\Scripts\activate
On macOS/Linux:
source venv/bin/activate
-
Install dependencies:
pip install -r requirements.txt
-
Apply database migrations:
python manage.py migrate
python manage.py runserver