51b9ddcf2dae8bb93258b5081ebda73bb3212f5e
[gwvp.git] / www / config.php
1 <?php
2
3 // the config file, this is as exciting as it gets really
4 $repo_base = "/tmp/gwvp-repos/";
5 $lib_base = "../gwvplib/";
6 $data_directory = "../data";
7 $db_type = "sqlite"; // could be mysql or pgsql - but not yet
8 $db_name = "$data_directory/gwvp.db"; // just a file for sqlite, for anything else is a pdo url without driver, i.e. host=localhost;dbname=whatever;user=asdf;password=asdf
9 $db_username = "";
10 $db_password = "";
11
12 ?>