Files
luos/gulliver/bin/tasks/templates/db.php.tpl

16 lines
576 B
Smarty
Raw Normal View History

2010-12-02 23:34:41 +00:00
<?php
// {projectName} configuration
define ('DB_ADAPTER', 'mysql' );
define ('DB_HOST', 'localhost:3306' );
define ('DB_NAME', 'db_{projectName}' );
define ('DB_USER', '{rootUser}' );
define ('DB_PASS', '{rootPass}' );
define ('DB_RBAC_HOST', 'localhost:3306' );
define ('DB_RBAC_NAME', 'rb_{projectName}' );
define ('DB_RBAC_USER', '{rootUser}' );
define ('DB_RBAC_PASS', '{rootPass}' );
//define ('DB_REPORT_HOST', 'localhost:3306' );
//define ('DB_REPORT_NAME', 'rp_workflow' );
//define ('DB_REPORT_USER', 'rp_workflow' );
//define ('DB_REPORT_PASS', '40xw2dp5v87y' );
?>