This project was created for those who love to cook. Here you will be able to find a dish to your liking. The site has the ability to leave reviews, add dishes to favorites. And of course, you can share your recipes. If you have some product in your fridge, you will be able to find a dish that includes it.
Live DEMO: Recipe website
- You can use following superuser:
- Login:
testuser - Password:
testpassword123
- Login:
On Windows:
python -m venv venv
venv\Scripts\activateOn Unix:
python3 -m venv venv
source venv/bin/activatepip install -r requirements.txtpython manage.py migratepython manage.py loaddata dump_json/data.jsonYou can upload ready-made data to see what the project looks like in its entirety and in action. You can also delete this file if you are not going to use the already prepared data
python manage.py runserverpython manage.py createsuperuserYou can run tests for the Django project using the following command:
python manage.py testIf you want to contribute to the project, please follow these steps: 1. Fork the repository. 2. Create a new branch for your feature or bug fix. 3. Make the necessary changes and commit them. 4. Submit a pull request.