Skip to content
This repository has been archived by the owner on Jan 27, 2021. It is now read-only.

Latest commit

 

History

History
45 lines (31 loc) · 995 Bytes

README.md

File metadata and controls

45 lines (31 loc) · 995 Bytes

CookieCutter Django

Docs

Usage

# 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

Develop

  1. Clone this repository locally
  2. Make your changes
  3. Test your changes!!! (see below)
  4. Commit changes, see: CONTRIBUTING.md

Output Local Copy:

# This outputs a built version of this template into ./build
make build

cd ./build/{{ project_slug }}

Automate

# To see latest help message run
make help