jambonrose / DjangoUnleashed-1.8

Code for Django Unleashed using Django 1.8

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Django Unleashed

This repository holds all of the code for Django Unleashed. If you find this code helpful, please buy the book.

All of this code is open-source under 2-clause BSD-license.

The code is written using Django 1.8. The full reference documentation for Django 1.8 may be found here.

IMPORTANT

This repository is frozen. To allow for the commit hashes in the book to link to the code in this repository, errors will not be fixed, and pull requests will be ignored. Errata will instead be listed on the Django Unleashed website.

For any help with Django, please ask questions on the official Django User mailing list. This will be a far quicker way of getting help than contacting me directly (and if you use the word "unleashed" in your email, my email will flag it. I will try to respond, if possible).

Walking the Repository

To make perusing the code in this repository as simple as possible, the project defines its own .gitconfig file with custom commands (aliases).

To enable the commands, you must first point your local git configuration at the file provided. Either of the two commands below will work.

# relative path
git config --local include.path "../.gitconfig"
# absolute path
git config --local include.path "`pwd`/.gitconfig"

This will enable the following git commands:

  • git chapter #
    This will list all of the commits relevant to that chapter. For example, git chapter 17 will show all of the commits used in Chapter 17.

  • git next
    Move to the next example in the book.

  • git prev
    Move to the previous example in the book.

For those who prefer a GUI, Atlassian's SourceTree is a good alternative to the commands above.

About

Code for Django Unleashed using Django 1.8

License:BSD 2-Clause "Simplified" License


Languages

Language:Python 46.9%Language:Jupyter Notebook 36.4%Language:HTML 15.2%Language:CSS 1.5%