crash_test.conf
changeset 99 0e40a68ba421
parent 98 aa2437932c03
child 100 4dae01f2beee
equal deleted inserted replaced
98:aa2437932c03 99:0e40a68ba421
     1 {
       
     2   Processor => {
       
     3     JobQueue => {
       
     4       Backend => {
       
     5         Minion => { Pg => "postgresql:///crashtest" },
       
     6       },
       
     7     },
       
     8     CrashProcessor => {
       
     9       Breakpad => {
       
    10         JSONStackwalker => 'stackwalker',
       
    11         SymbolsPath => 'data/breakpad-debug-symbols/*',
       
    12       },
       
    13     },
       
    14   },
       
    15   Storage => [
       
    16     { Type => "Sql",  db => { Pg => "postgresql:///crashtest" } },
       
    17     { Type => "File", DataDir => 'data/crashs/' },
       
    18   ],
       
    19   WebInterface => {
       
    20     ScmLinks => {
       
    21       "svn:svn.example.org/testproject" => 'https://redmine.example.org/projects/testproject/repository/entry/<%= $scmpath =%>?rev=<%= $rev =%>#L<%= $line =%>',
       
    22     },
       
    23     ExtraColumns => {
       
    24       Index => [
       
    25         { id => 'os', db_column => "crash_user.os", name => 'Operating System' },
       
    26       ],
       
    27     },
       
    28   },
       
    29 };
       
    30 # vim:ft=perl: