nyergler / effective-django

Documentation on effectively using Django for building web applications.
Other
175 stars 34 forks source link

================== Effective Django

This is the repository for the text Effective Django, an ongoing work in progress by Nathan Yergler. The sample code is maintained in the effective-django-tutorial repository.

Effective Django is authored using ReStructured Text and Sphinx. If you're interested in building HTML, PDF, ePub, or other generated formats, you can do so by:

. If you want to build PDF or ePub output, make sure LaTeX is

installed on your machine. If you only care about HTML output, you can skip this step.

For Macs, it is recommended you use MacTeX_

::

  $ brew install Caskroom/cask/mactex

If you're building on Ubuntu, you should install the texlive and texlive-latex-extra packages.

::

  $ sudo apt-get install texlive texlive-latex-extra

. Check out this repository::

 $ git clone --recursive https://github.com/nyergler/effective-django.git

Note that in order to build Effective Django, the sample code must be cloned into the src submodule. Using --recursive will accomplish that.

. Create a virtualenv_ and install the dependencies::

 $ virtualenv .
 $ . bin/activate
 $ pip install -r requirements.txt

. Run make::

 $ make all

The output will be in the _build sub-directory.

To only build HTML, specify the target explicitly::

 $ make html

Run make without any parameters for a list of possible targets.

.. Effective Django: http://effectivedjango.com/ .. effective-django-tutorial: https://github.com/nyergler/effective-django-tutorial .. _ReStructured Text: http://docutils.sf.net/ .. Sphinx: http://sphinx-doc.org/ .. MacTeX: http://tug.org/mactex/ .. _virtualenv: http://www.virtualenv.org/