to ignore the file, it must not be in cvs.

This commit is contained in:
Jeremy Newman
2004-03-15 16:51:04 +00:00
parent d20e11a43a
commit 4fd9cea6f1

27
include/config.php.sample Normal file
View File

@@ -0,0 +1,27 @@
<?
/* config file for apidb */
/*
* global params
*/
$apidb_debug = 0; //turns debugging on/off
/*
* api database info
*/
$apidb_dbuser = "wineowner";
$apidb_dbpass = "lemonade";
$apidb_dbhost = "localhost";
$apidb_db = "winehq_appdb";
/*
* user database info
*/
$userdb_dbuser = "wineowner";
$userdb_dbpass = "lemonade";
$userdb_dbhost = "localhost";
$userdb_db = "winehq_appdb";
?>