gecko-dev/webtools/despot/config.pl.dist
justdave%bugzilla.org 4c1018afe3 Bug 313041: Make Despot use DBI instead of the deprecated Mysql module
Bug 313039: Make database host, name, password, etc configurable
Bug 318879: Fix "too early to check prototype" warning
r=timeless
2006-01-08 06:50:21 +00:00

15 lines
296 B
Perl

#!/usr/bin/perl
#
# Despot configuration file
#
# Copy this file to config.pl, then make changes to it.
#
$::db_host = 'localhost'; # database host
$::db_name = 'mozusers'; # database name
$::db_user = 'despot'; # database username
$::db_pass = ''; # database password
1;