First step:
cd backend_django
Django project has requirements.txt with all python dependencies
To install you need write: pip install -r requirements.txt in your venv
You also need to run migrations: py manage.py makemigrations, py manage.py migrate
First step:
cd react-fron-app
To install react dependencies just run npm install.
It will resolve the required dependencies from the package.json file.
To start this app you need:
In one terminal write:
cd react-front-app
npm start to start react app
In another terminal write
cd backend_django
python manage.py runserver to run django api server