Mercurial > p > roundup > code
diff doc/mysql.txt @ 1434:b953750bdc04
trackers on mysql can be initialised
added mechanism for backends to detect and clear database
| author | Andrey Lebedev <kedder@users.sourceforge.net> |
|---|---|
| date | Sat, 15 Feb 2003 23:19:01 +0000 |
| parents | 8429095241d7 |
| children | 1fb2e44d02e3 |
line wrap: on
line diff
--- a/doc/mysql.txt Sat Feb 15 14:26:38 2003 +0000 +++ b/doc/mysql.txt Sat Feb 15 23:19:01 2003 +0000 @@ -38,6 +38,23 @@ drop database with data. +Additional configuration +======================== + +To initialise and use mysql database roundup' configuration file (config.py in +the tracker' home directory) should be appended with the following constants: + + MYSQL_DBHOST = 'localhost' + MYSQL_DBUSER = 'rounduptest' + MYSQL_DBPASSWORD = 'rounduptest' + MYSQL_DBNAME = 'rounduptest' + MYSQL_DATABASE = ( MYSQL_DBHOST, MYSQL_DBUSER, MYSQL_DBPASSWORD, MYSQL_DBNAME ) + +Fill first four constants with real values before running +"roundup-admin initialise". + + + Andrey Lebedev <andrey@micro.lt>
