]> git.sesse.net Git - ccbs/blob - config.pm
Clean up glyph rendering a bit.
[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 # The base path for all web stuff.
10 our $webroot = "http://ccbs.sesse.net/";
11
12 # Set this flag to enable debugging of all SQL statements. 
13 our $dbdebug = 0;
14
15 # Set this flag to disable any admin tasks -- it's quite crude, but hey :-)
16 our $noadmin = 0;
17
18 # The main template, giving the overall look-and-feel
19 our $main_template = 'main.tmpl';
20
21 # The database connection details
22 our $dbname = "ccbs";
23 our $dbhost = "www.positivegaming.com";
24 our $dbuser = "ccbs";
25 our $dbpass = "GeT|>>B_";
26
27 1;
28