Installation of Darcsforge components is intended to be similar to the installation of any other Django applications. It is suggested that users should be familiar with Django.
See also
Additionally, to build this documentation you will need the Sphinx documentation tool.
These are settings for your settings.py that affect operation of Darcsforge applications.
The Content Formatter is the deep-linker and markup engine for most Darcsforge entities. The encouraged formatter is for reStructuredText, and is a component of darcsforge.deepdish. To use this formatter:
# Darcsforge Markup Setting
from darcsforge.deepdish.formatters import ReStructuredText
DARCSFORGE_CONTENT_FORMATTER = ReStructuredText
Most Darcsforge applications contain models. It is suggested to refer to individual application modules for more details on whether to install them or not. Don’t forget to python manage.py syncdb when installing new applications.
Most Darcsforge applications use references to the django.contrib.sites.Site model and it is suggested that your sites correctly set SITE_ID.