X-Git-Url: http://git.ithinksw.org/philo.git/blobdiff_plain/853b15703adfe5313ca3c51bd108327ded538ae2..c492d5a74a124881271104ba4a0957a887723e76:/docs/intro.rst diff --git a/docs/intro.rst b/docs/intro.rst deleted file mode 100644 index 2b253db..0000000 --- a/docs/intro.rst +++ /dev/null @@ -1,35 +0,0 @@ -How to get started with philo -============================= - -After installing `philo`_ and `mptt`_ on your python path, make sure to complete the following steps: - -1. add :mod:`philo` and :mod:`mptt` to :setting:`settings.INSTALLED_APPS`:: - - INSTALLED_APPS = ( - ... - 'philo', - 'mptt', - ... - ) - -2. add :class:`philo.middleware.RequestNodeMiddleware` to :setting:`settings.MIDDLEWARE_CLASSES`:: - - MIDDLEWARE_CLASSES = ( - ... - 'philo.middleware.RequestNodeMiddleware', - ... - ) - -3. include :mod:`philo.urls` somewhere in your urls.py file. For example:: - - from django.conf.urls.defaults import patterns, include, url - urlpatterns = patterns('', - url(r'^', include('philo.urls')), - ) - -4. Optionally add a root :class:`node ` to your current :class:`Site` in the admin interface. - -Philo should be ready to go! - -.. _philo: http://philocms.org/ -.. _mptt: http://github.com/django-mptt/django-mptt