7a57d2a0e217a19e4fba323cd4225d8d560aa6f6
[gwvp.git] / www / config-dist.php
1 <?php
2
3 // the config file, this is as exciting as it gets really
4 $repo_base = "/some/path/to/a/location/where/repos/are/stored";
5 $lib_base = "../gwvplib/"; // generally this will be correct
6 $data_directory = "/some/path/to/a/location/where/the/data/the/website/uses/can/be/stored";
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_host = "";
10 $db_username = "";
11 $db_password = "";
12
13 ?>