1 How to get started with philo
2 =============================
4 After installing `philo`_ and `mptt`_ on your python path, make sure to complete the following steps:
6 1. add :mod:`philo` and :mod:`mptt` to :setting:`settings.INSTALLED_APPS`::
15 2. add :class:`philo.middleware.RequestNodeMiddleware` to :setting:`settings.MIDDLEWARE_CLASSES`::
17 MIDDLEWARE_CLASSES = (
19 'philo.middleware.RequestNodeMiddleware',
23 3. include :mod:`philo.urls` somewhere in your urls.py file. For example::
25 from django.conf.urls.defaults import patterns, include, url
26 urlpatterns = patterns('',
27 url(r'^', include('philo.urls')),
30 4. Optionally add a root :class:`node <philo.models.Node>` to your current :class:`Site` in the admin interface.
32 Philo should be ready to go!
34 .. _philo: http://github.com/ithinksw/philo
35 .. _mptt: http://github.com/django-mptt/django-mptt