X-Git-Url: https://git.ozlabs.org/?a=blobdiff_plain;f=docs%2FINSTALL;h=42822e3650aac51c9b788c15a73dbecb51174b07;hb=ab0062c77d1fd7d1ed583d3db6528a06bface822;hp=cba69d55d664d532a13245224d8cba1ab824f25e;hpb=83964878e92ce0687d47409b5832e7220e57d79f;p=patchwork diff --git a/docs/INSTALL b/docs/INSTALL index cba69d5..42822e3 100644 --- a/docs/INSTALL +++ b/docs/INSTALL @@ -29,26 +29,34 @@ in brackets): user that your mail server runs as). On Ubuntu these are www-data and nobody, respectively. - PostgreSQL: - createdb patchwork - createuser www-data - createuser nobody + For PostgreSQL - MySQL: + $ createdb patchwork + $ createuser www-data + $ createuser nobody + + - postgres uses the standard UNIX authentication, so these users + will only be accessible for processes running as the same username. + This means that no passwords need to be set. + + For MySQL: $ mysql > CREATE DATABASE 'patchwork'; - > INSERT INTO user (Host, User) VALUES ('localhost', 'www-data'); - > INSERT INTO user (Host, User) VALUES ('localhost', 'nobody'); + > CREATE USER 'www-data'@'localhost' IDENTIFIED BY ''; + > CREATE USER 'nobody'@'localhost' IDENTIFIED BY ''; 2. Django setup - At the time of initial release, patchwork depends on a svn version of - django. I've been using svn commit 7854 - but anything after this - point should be fine. If your distribution provides a sufficiently - recent version of django, you can use that; if not, do a: + Set up some initial directories in the patchwork base directory: + + mkdir -p lib/packages lib/python + + At the time of release, patchwork depends on django version 1.0. + However, most distros don't provide 1.0 yet. If yours does, then you + can skip this step. Otherwise, do a: cd lib/packages - svn checkout http://code.djangoproject.com/svn/django/trunk django + svn checkout http://code.djangoproject.com/svn/django/tags/releases/1.0 cd ../python ln -s ../packages/django/django ./django @@ -62,17 +70,6 @@ in brackets): cd ../../apps ln -s ../lib/packages/django-registration ./registration - (OPTIONAL) If you want to enable the Patchwork XML-RPC interface, - which is required for pwclient to work, you'll need to set up the - django_xmlrpc package: - - cd lib/packages/ - wget \ - http://django-xmlrpc.googlecode.com/files/django_xmlrpc-0.1.tar.gz - tar -zxf django_xmlrpc-0.1.tar.gz - cd ../../apps - ln -s ../lib/packages/django_xmlrpc ./django_xmlrpc - The settings.py file contains default settings for patchwork, you'll need to configure settings for your own setup. @@ -110,8 +107,10 @@ in brackets): And add privileges for your mail and web users: Postgresql: - psql -f lib/sql/grant-all.sql patchwork + psql -f lib/sql/grant-all.postgres.sql patchwork + MySQL: + mysql patchwork < lib/sql/grant-all.mysql.sql 3. Apache setup