CSS cleanup.
[viewgit.git] / inc / example-localconfig.php
blobcff206ad53a41614bcca0ef839d72f422665a040
1 <?php
2 /** @file
3 * Example localconfig.php. See config.php for more information.
4 */
6 // This is the only mandatory setting
7 $conf['projects'] = array(
8 'foo' => array('repo' => '/home/user/projects/foo/.git'),
9 );
11 // A bit sorter datetime format: YY-MM-DD HH:MM
12 $conf['datetime'] = '%y-%m-%d %H:%M';
14 // Extra security
15 $conf['allow_checkout'] = false;