Easy Chef is a recipe sharing web application that allows users to create, view and share their recipes with each other.
This application was built with Django REST framework and React.
Navigate to the directory:
cd EasyChefCreate an activate a virtual environment:
python3 -m venv .venv
source .venv/bin/activateInstall the required dependencies:
pip install -r requirements.txtNavigate to backend directory:
cd Django-backendMake migrations and migrate:
python3 manage.py makemgirations
python3 manage.py migrateLaunch backend server:
python3 manage.py runserverNavigate to the directory:
cd EasyChef
cd react-frontendInstall dependencies:
npm installLaunch frontend
npm start





