6c195f4371c79a9079b8c8bad96b6406403c052a
[gwvp-mini.git] / www / config.php
1 <?php
2
3 // this config file is going to reduce down to just db connectivity - thats all
4 // all other config will be kept in the db, but not just yet
5
6 // the config file, this is as exciting as it gets really
7 // no longer valid here $repo_base = "/tmp/";
8 $data_directory = "$WEB_ROOT_FS/../data";
9 $db_type = "sqlite"; // could be mysql or pgsql - but not yet
10 $db_name = "$data_directory/gwvpmini.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
11 $db_username = "";
12 $db_password = "";
13
14 $cmd_line_tool = realpath("../bin/gwvpminicmdtool.php");
15
16 //error_log("included config file");
17 ?>