A boilerplate Django project for quickly getting started
Steps:
- Pull this repository
- Create a virtualenv and install dependencies with
pip install -r requirements.txt
- Configure your .env variables
- Rename your project with
python manage.py rename yourprojectname
- install all dependencies for your frontend app with
npm install
This project includes:
- The Django Debug Toolbar already setup
- Multiple settings modules setup for easily deploying
- Python-decouple for securely referencing keys, passwords and other settings.
- A custom Django command for renaming your project
- all dependencies you need to work with react
- webpack and babel configuration is set up for you already