]> git.sesse.net Git - ccbs/blobdiff - config.pm
There is no freshcolumnheading.
[ccbs] / config.pm
index 13544753222344d62877c215dcd6f30cfedea579..38bb1b86793adfdbd1aeb17ad58f10675bac8dc5 100644 (file)
--- a/config.pm
+++ b/config.pm
@@ -4,7 +4,10 @@
 package ccbs::config;
 
 # The default web locale.
-our $lang = "en_US.UTF_8";
+our $lang = "en_US.UTF-8";
+
+# The base path for all web stuff.
+our $webroot = "http://ccbs.sesse.net/";
 
 # Set this flag to enable debugging of all SQL statements. 
 our $dbdebug = 0;
@@ -12,5 +15,14 @@ our $dbdebug = 0;
 # Set this flag to disable any admin tasks -- it's quite crude, but hey :-)
 our $noadmin = 0;
 
+# The main template, giving the overall look-and-feel
+our $main_template = 'main.tmpl';
+
+# The database connection details
+our $dbname = "ccbs";
+our $dbhost = "www.positivegaming.com";
+our $dbuser = "ccbs";
+our $dbpass = "GeT|>>B_";
+
 1;