]> git.ozlabs.org Git - patchwork/commitdiff
Document dependency on django-registration
authorJeremy Kerr <jk@ozlabs.org>
Fri, 22 Aug 2008 02:42:05 +0000 (10:42 +0800)
committerJeremy Kerr <jk@ozlabs.org>
Fri, 22 Aug 2008 02:42:05 +0000 (10:42 +0800)
Signed-off-by: Jeremy Kerr <jk@ozlabs.org>
docs/INSTALL

index 7d0df1234118e42687c6effbb32dae53f1778952..0d5cc3e78553510a10658ea1a060e139edb85e5b 100644 (file)
@@ -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/.