summaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
Diffstat (limited to 'docs')
-rw-r--r--docs/INSTALL19
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/.