show exception stack traces when debugging is on
[phorkie.git] / data / config.default.php
index d55721d1262c7143e230397bf4de88487bf24ba9..804ff5e45d863fb96d567461fc40e7f522c3cb9f 100644 (file)
@@ -1,8 +1,10 @@
 <?php
 $GLOBALS['phorkie']['cfg'] = array(
-    'repos' => __DIR__ . '/../repos/',
-    'tpl'   => __DIR__ . '/templates/',
-    'css'   => 'http://twitter.github.com/bootstrap/assets/css/bootstrap.css',
+    'debug'   => false,
+    'gitdir'  => __DIR__ . '/../repos/git/',
+    'workdir' => __DIR__ . '/../repos/work/',
+    'tpl'     => __DIR__ . '/templates/',
+    'css'     => 'http://twitter.github.com/bootstrap/assets/css/bootstrap.css',
 );
 /**
  * Array of supported file types / languages.
@@ -56,6 +58,11 @@ $GLOBALS['phorkie']['languages'] = array(
         'mime'  => 'text/x-shellscript',
         'geshi' => 'bash'
     ),
+    'sql' => array(
+        'title' => 'SQL',
+        'mime'  => 'text/x-sql',
+        'geshi' => 'sql'
+    ),
     'ts' => array(
         'title' => 'TypoScript',
         'mime'  => 'text/plain',/* TODO: correct type */