Django react starter kit a django app configured to work with react as front end. The app uses parcel.js to compile react. This is base starter so you don't have to configure react to work with django.
The djnago app exposes a rest api to communicate with react frontend.
- create a virtual environment with what ever you prefeer.
- install requirements with
pip install requirements.txt
- cd into front and install js dependencies
cd front
yarn install
or
npm install
npm run develop
to watch on changes in react
npm run build
to make a production build
python manage.py runserver
on root directory to run django