A Django book for people with intermediate level Django skills. Inspired by James Bennett's Practical Django projects.
Python HTML CSS Makefile
Switch branches/tags
Nothing to show
Fetching latest commit…
Cannot retrieve the latest commit at this time.
Permalink
Failed to load latest commit information.
meta
source
themes
.gitignore
.gitmodules
Makefile
README.md

README.md

A Django book for people with intermediate level Django skills.

Inspired by James Bennett's Practical Django projects.

Generating documentation requires Sphinx

Build it locally

First do this:

clone repo
cd djenofdjango
git submodule update --init --recursive

To create HTML documentation, run:

cd src
make html

To create a PDF version of the book on Ubuntu Linux:

sudo apt-get install git texlive-full python-sphinx
cd djenofdjango/src
make latex latex_paper_size=letter
cd build/latex
make all-pdf

The generated file is located at djenofdjango/src/build/latex/djenofdjango.pdf