16 lines
576 B
Smarty
Executable File
16 lines
576 B
Smarty
Executable File
<?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' );
|
|
?> |