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 EasyChef
Create an activate a virtual environment:
python3 -m venv .venv
source .venv/bin/activate
Install the required dependencies:
pip install -r requirements.txt
Navigate to backend directory:
cd Django-backend
Make migrations and migrate:
python3 manage.py makemgirations
python3 manage.py migrate
Launch backend server:
python3 manage.py runserver
Navigate to the directory:
cd EasyChef
cd react-frontend
Install dependencies:
npm install
Launch frontend
npm start