To clone and run this application, you'll need Git, Node.js and Python3:
# Clone this repository
$ git clone https://github.com/davidncuba/blog-django-react.git
# Go into the repository
$ cd blog-django-react
# Install dependencies React
$ cd frontend
$ yarn
# Install dependencies React
$ cd ..
$ cd backend
$ python3 -m venv env
$ source env/bin/activate
$ pip install -r requirements.txt
$ python manage.py migrate
$ python manage.py createsuperuser
$ python manage.py runserver
# Run the app
# Backend
$ python manage.py runserver
# Frontend(you need 2 terminal)
$ cd frontend
$ yarn start