Commit 0303bcdb by benjaoming

Headlines

parent 0de33822
...@@ -21,15 +21,13 @@ This is where it all begins. In less than *3* weeks we should have a wiki system ...@@ -21,15 +21,13 @@ This is where it all begins. In less than *3* weeks we should have a wiki system
Installation Installation
------------ ------------
Install ### Install
_______
Install directly from Github, since there is no release yet: 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`
Configure `settings.INSTALLED_APPS` ### Configure `settings.INSTALLED_APPS`
___________________________________
Make sure that the following is present: Make sure that the following is present:
...@@ -43,21 +41,18 @@ Make sure that the following is present: ...@@ -43,21 +41,18 @@ Make sure that the following is present:
'sekizai', 'sekizai',
'django.contrib.humanize', 'django.contrib.humanize',
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
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`.
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