Heavily based on django-react-redux-base, but with a different folder structure and React Hot Loader.
# Install Python 3.4.3 brew install pyenv pyenv install 3.4.3 # Create a virtualenv to encapsulate Python dependencies virtualenv -p ~/.pyenv/versions/3.4.3/bin/python3.4 .venv source .venv/bin/activate # Install Python dependencies pip install -r requirements/dev.txt # Copy over enviornment file and point it to the MySQL database cp .env.example .env # Migrate and load in a default user python manage.py migrate python manage.py createsuperuser # Install front end dependencies yarn # Run front end npm run dev # Run back end python manage.py runserver