comparison roundup/configuration.py @ 5041:5251e97b1de0

Configure the database backend in the config.ini The database backend is currently configured in the 'db/backend_name' file which is just another file that needs to be configured when setting up or migrating a tracker instance. By moving this setting into the config.ini it helps to reduce the number of files that need to be configured and is more logical place for users to find the setting.
author John Kristensen <john@jerrykan.com>
date Mon, 22 Dec 2014 13:30:20 +1100
parents 05c857e5dbed
children a46d5d0fd5f8
comparison
equal deleted inserted replaced
5040:f52a9fb035d2 5041:5251e97b1de0
618 )), 618 )),
619 ("rdbms", ( 619 ("rdbms", (
620 (Option, 'name', 'roundup', 620 (Option, 'name', 'roundup',
621 "Name of the database to use.", 621 "Name of the database to use.",
622 ['MYSQL_DBNAME']), 622 ['MYSQL_DBNAME']),
623 (Option, 'backend', '',
624 "Database backend."),
623 (NullableOption, 'host', 'localhost', 625 (NullableOption, 'host', 'localhost',
624 "Database server host.", 626 "Database server host.",
625 ['MYSQL_DBHOST']), 627 ['MYSQL_DBHOST']),
626 (NullableOption, 'port', '', 628 (NullableOption, 'port', '',
627 "TCP port number of the database server.\n" 629 "TCP port number of the database server.\n"

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