@@ -33,13 +33,15 @@ Additional configuration
3333========================
3434
3535To initialise and use PostgreSQL database roundup's configuration file
36- (config.py in the tracker's home directory) should be appended with the
37- following constants (substituting real values, obviously)::
36+ (`` config.py`` in the tracker's home directory) should be ammended with
37+ the following constants (substituting real values, obviously)::
3838
3939 POSTGRESQL_DATABASE = {'database': 'rounduptest'}
4040
41- if not local, or a different user is to be used, then more information may
42- be supplied::
41+ Note that it's usually a good idea to explicitly specify the user which is
42+ to be used access the database too, to avoid permissions problems. If
43+ postgresql is not local, or a different user is to be used, then more
44+ information may be supplied::
4345
4446 POSTGRESQL_DATABASE = {
4547 'host': 'localhost', 'port': 5432,
@@ -50,10 +52,16 @@ be supplied::
5052Also note that you can leave some values out of
5153``POSTGRESQL_DATABASE``: 'host' and 'port' are not necessary when
5254connecting to a local database and 'password'
53- is optional if postgres trusts local connections. The user specified in
54- ``user`` must have rights to create a new database and to
55- connect to the "template1" database, used while initializing roundup.
55+ is optional if postgres trusts local connections.
5656
57- Have fun with psycopg,
58- Federico Di Gregorio <
[email protected] >
57+ The user specified in ``user`` must have rights to create a new database
58+ and to connect to the "template1" database, used while initializing roundup.
59+
60+
61+
62+ Credit
63+ ======
64+
65+ The postgresql backend was originally submitted by Federico Di Gregorio
66+ 5967
0 commit comments