reed%reedloden.com 6b84d410ec Bug 398050 - "Tinderbox should store data about each bonsai/viewvc instance that it knows about" [p=reed r=bear]
git-svn-id: svn://10.0.0.236/trunk@251912 18797224-902f-48f8-a5cc-f745e15eee43
2008-05-29 02:22:25 +00:00

40 lines
1.1 KiB
Perl

# Example configuration file for Tinderbox
# The query system configuration information
# @::QueryList is a list of all configured query systems
# Note that only Bonsai and ViewVC are supported at this time
# To add a query system, add its name to @::QueryList
# then duplicate the "bonsai" or "viewvc" entry in @::QueryInfo
# and change the values appropriately
@::QueryList = ('bonsai', 'viewvc');
%::QueryInfo = (
'bonsai' => {
type => 'bonsai',
directory => '/var/www/html/bonsai',
url => 'http://bonsai.mozilla.org/',
registry_url => 'http://webtools.mozilla.org/registry',
dbdriver => 'mysql',
dbhost => 'localhost',
dbport => '',
dbname => 'bonsai',
dbuser => 'bonsai',
dbpasswd => 'bonsai',
},
'viewvc' => {
type => 'viewvc',
url => 'http://www.viewvc.com/cgi-bin/viewvc.cgi/svn',
dbdriver => 'mysql',
dbhost => 'localhost',
dbport => '',
dbname => 'viewvc',
dbuser => 'viewvc',
dbpasswd => 'viewvc',
},
);
1;