diff doc/postgresql.txt @ 2860:653c7ffce402

remove obsolete configuration notes
author Alexander Smishlajev <a1s@users.sourceforge.net>
date Wed, 03 Nov 2004 09:23:50 +0000
parents c0d6d5004464
children 213468d6e7c9 15c03392019c
line wrap: on
line diff
--- a/doc/postgresql.txt	Wed Nov 03 03:07:04 2004 +0000
+++ b/doc/postgresql.txt	Wed Nov 03 09:23:50 2004 +0000
@@ -29,36 +29,6 @@
 The test database will be called "rounduptest".
 
 
-Additional configuration
-========================
-
-To initialise and use PostgreSQL database roundup's configuration file
-(``config.py`` in the tracker's home directory) should be ammended with
-the following constants (substituting real values, obviously)::
-
-    POSTGRESQL_DATABASE = {'database': 'rounduptest'}
-
-Note that it's usually a good idea to explicitly specify the user which is
-to be used access the database too, to avoid permissions problems. If
-postgresql is not local, or a different user is to be used, then more
-information may be supplied::
-
-    POSTGRESQL_DATABASE = {
-        'host': 'localhost', 'port': 5432,
-        'database': 'roundup'
-        'user': 'roundup', 'password': 'roundup',
-    }
-
-Also note that you can leave some values out of
-``POSTGRESQL_DATABASE``: 'host' and 'port' are not necessary when
-connecting to a local database and 'password'
-is optional if postgres trusts local connections.
-
-The user specified in ``user`` must have rights to create a new database
-and to connect to the "template1" database, used while initializing roundup.
-
-
-
 Credit
 ======
 

Roundup Issue Tracker: http://roundup-tracker.org/