]> git.sesse.net Git - ccbs/blob - config.pm
Multiple changes to make it possible to run www.positivegaming.com off the same code...
[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 main template, giving the overall look-and-feel
16 our $main_template = 'main.tmpl';
17
18 # The database connection details
19 our $dbname = "ccbs";
20 our $dbhost = "www.positivegaming.com";
21 our $dbuser = "ccbs";
22 our $dbpass = "GeT|>>B_";
23
24 1;
25