Commit 0de33822 by benjaoming

Nicer headlines for install instructions

parent 5710402e
...@@ -21,11 +21,15 @@ This is where it all begins. In less than *3* weeks we should have a wiki system ...@@ -21,11 +21,15 @@ This is where it all begins. In less than *3* weeks we should have a wiki system
Installation Installation
------------ ------------
1. Install. Install
_______
Install directly from Github, since there is no release yet:
`pip install git+git://github.com/benjaoming/django-wiki.git` `pip install git+git://github.com/benjaoming/django-wiki.git`
2. Configure `settings.INSTALLED_APPS` Configure `settings.INSTALLED_APPS`
___________________________________
Make sure that the following is present: Make sure that the following is present:
...@@ -39,18 +43,21 @@ Make sure that the following is present: ...@@ -39,18 +43,21 @@ Make sure that the following is present:
'sekizai', 'sekizai',
'django.contrib.humanize', 'django.contrib.humanize',
3. Database Database
________
To sync and create tables, do: To sync and create tables, do:
python manage.py syncdb python manage.py syncdb
python manage.py migrate python manage.py migrate
4. Configure `settings.TEMPLATE_CONTEXT_PROCESSORS` Configure `settings.TEMPLATE_CONTEXT_PROCESSORS`
________________________________________________
Add `'sekizai.context_processors.sekizai'` to `settings.TEMPLATE_CONTEXT_PROCESSORS`. Add `'sekizai.context_processors.sekizai'` to `settings.TEMPLATE_CONTEXT_PROCESSORS`.
5. Include urlpatterns Include urlpatterns
___________________
To integrate the wiki to your existing application, you shoud add the following lines at the end of your project's `urls.py`. To integrate the wiki to your existing application, you shoud add the following lines at the end of your project's `urls.py`.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment