diff options
author | Jeremy Kerr <jk@ozlabs.org> | 2008-08-22 10:42:05 +0800 |
---|---|---|
committer | Jeremy Kerr <jk@ozlabs.org> | 2008-08-22 10:42:05 +0800 |
commit | 941db44d31f4736bab7c60c4995de16961944745 (patch) | |
tree | 8b32e3c6c641fee3448c63a06f2e274e6682b3d1 | |
parent | f1e089f7736ac8f7b9af784461350c4c169211ad (diff) | |
download | patchwork-941db44d31f4736bab7c60c4995de16961944745.tar patchwork-941db44d31f4736bab7c60c4995de16961944745.tar.gz |
Document dependency on django-registration
Signed-off-by: Jeremy Kerr <jk@ozlabs.org>
-rw-r--r-- | docs/INSTALL | 19 |
1 files changed, 16 insertions, 3 deletions
diff --git a/docs/INSTALL b/docs/INSTALL index 7d0df12..0d5cc3e 100644 --- a/docs/INSTALL +++ b/docs/INSTALL @@ -47,15 +47,27 @@ in brackets): point should be fine. If your distribution provides a sufficiently recent version of django, you can use that; if not, do a: - cd lib/python - svn checkout http://code.djangoproject.com/svn/django/trunk . + cd lib/packages + svn checkout http://code.djangoproject.com/svn/django/trunk django + cd ../python + ln -s ../packages/django/django ./django + + We also use the django-registration infrastructure from + http://code.google.com/p/django-registration/ + + cd lib/packages/ + svn checkout \ + http://django-registration.googlecode.com/svn/trunk/registration/ \ + django-registration + cd ../../apps + ln -s ../lib/packages/django-registration ./registration You'll need to customise apps/settings.py to suit your database, and change the SECRET_KEY variable too. While you're there, change the following to suit your installation: SECRET_KEY - ADMINS, + ADMINS TIME_ZONE LANGUAGE_CODE MEDIA_ROOT @@ -77,6 +89,7 @@ in brackets): psql -f lib/sql/grant-all.sql patchwork + 3. Apache setup Example apache configuration files are in lib/apache/. |