diff options
author | Florian Fainelli <f.fainelli@gmail.com> | 2013-10-01 18:39:18 +0100 |
---|---|---|
committer | Jeremy Kerr <jk@ozlabs.org> | 2013-10-04 14:15:14 +0800 |
commit | 2a65b3c1db2afe1ec1709ad07a1f151b9a9d320c (patch) | |
tree | 479bc4abcbf42cb02e3aef56eefa21376865a7b3 /docs/INSTALL | |
parent | 5c2626726c895ccc62a5d58b76224d6cd0ac0e3f (diff) | |
download | patchwork-2a65b3c1db2afe1ec1709ad07a1f151b9a9d320c.tar patchwork-2a65b3c1db2afe1ec1709ad07a1f151b9a9d320c.tar.gz |
docs: fix INSTALL instructions regarding Django
Django is no longer accessible using the old Subversion URL, update that
to the Github repository. Besides, the command-line used to perform the
"syncdb" operation does not work because we are off by one directory in
the filesystem, fix that.
Signed-off-by: Florian Fainelli <f.fainelli@gmail.com>
Signed-off-by: Jeremy Kerr <jk@ozlabs.org>
Diffstat (limited to 'docs/INSTALL')
-rw-r--r-- | docs/INSTALL | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/INSTALL b/docs/INSTALL index 28f85d5..6c48644 100644 --- a/docs/INSTALL +++ b/docs/INSTALL @@ -89,7 +89,7 @@ in brackets): later. Your distro probably provides this. If not, do a: cd lib/packages - svn checkout http://code.djangoproject.com/svn/django/tags/releases/1.2 + git clone https://github.com/django/django.git -b stable/1.2.x cd ../python ln -s ../packages/django/django ./django @@ -127,7 +127,7 @@ in brackets): Then, get patchwork to create its tables in your configured database: cd apps/ - PYTHONPATH=../lib/python ./manage.py syncdb + PYTHONPATH=../lib/python/django ./manage.py syncdb And add privileges for your mail and web users. This is only needed if you use the ident-based approach. If you use password-based database |