Python backend, react front end server. Django loads react through the lead app connecting the front and backend via djangorestframework REST API. Basic model used. Load up as follows
- git clone the repo
- npm i - install js packages
- pipenv install - install python packages
- pipenv shell - activate virtual environment
- npm run dev - uses webpack to bundle react into static folder as main.js
- cd into leadmanager
- python manage.py syncdb - initialise db
- python manage.py migrate - update migrate schema into db
- python manage.py runserver - loads server on localhost:8000