]> git.sesse.net Git - ccbs/blobdiff - config.pm
Move config stuff over in a separate file.
[ccbs] / config.pm
diff --git a/config.pm b/config.pm
new file mode 100644 (file)
index 0000000..1354475
--- /dev/null
+++ b/config.pm
@@ -0,0 +1,16 @@
+# These can be overridden by config.local.pl. Don't check in changes here
+# unless you really want them to be default!
+
+package ccbs::config;
+
+# The default web locale.
+our $lang = "en_US.UTF_8";
+
+# Set this flag to enable debugging of all SQL statements. 
+our $dbdebug = 0;
+
+# Set this flag to disable any admin tasks -- it's quite crude, but hey :-)
+our $noadmin = 0;
+
+1;
+