]> git.sesse.net Git - ccbs/blob - config.pm
Move the database config into config.pm.
[ccbs] / config.pm
1 # These can be overridden by config.local.pl. Don't check in changes here
2 # unless you really want them to be default!
3
4 package ccbs::config;
5
6 # The default web locale.
7 our $lang = "en_US.UTF_8";
8
9 # Set this flag to enable debugging of all SQL statements. 
10 our $dbdebug = 0;
11
12 # Set this flag to disable any admin tasks -- it's quite crude, but hey :-)
13 our $noadmin = 0;
14
15 # The database connection details
16 our $dbname = "ccbs";
17 our $dbhost = "www.positivegaming.com";
18 our $dbuser = "ccbs";
19 our $dbpass = "GeT|>>B_";
20
21 1;
22