# Install cookiecutter
pip install cookiecutter
# Change directories to where you keep your projects
cd path/to/your/projects
# Run cookiecutter template
# Outputs a directory that matches the value you enter for `project_slug`
cookiecutter https://github.com/blitzagency/cookiecutter-django
- Clone this repository locally
- Make your changes
- Test your changes!!! (see below)
- Commit changes, see: CONTRIBUTING.md
Output Local Copy:
# This outputs a built version of this template into ./build
make build
cd ./build/{{ project_slug }}
- To spin up the project follow the instructions in the project README.md.
# To see latest help message run
make help