aboutsummaryrefslogtreecommitdiff
path: root/config.php
blob: 7555eee60e907f23391e4f3d0b0808d144219c4c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<?php

$config = array(
    'db' => array(
        'dsn' => 'pgsql:dbname=bugtracker;host=localhost;port=5432',
        'username' => 'red',
        'password' => 'red'
    )
);

define("LIBRARY_PATH", realpath(dirname(__FILE__) . '/library'));
define("TEMPLATES_PATH", realpath(dirname(__FILE__) . '/templates'));

?>