mirror of
https://github.com/VTECRM/vtenext.git
synced 2026-02-26 08:17:52 +00:00
21 lines
875 B
PHP
21 lines
875 B
PHP
<?php
|
|
/*************************************
|
|
* SPDX-FileCopyrightText: 2009-2020 Vtenext S.r.l. <info@vtenext.com>
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
************************************/
|
|
$dbconfig['db_server'] = '_DBC_SERVER_';
|
|
$dbconfig['db_port'] = '_DBC_PORT_';
|
|
$dbconfig['db_sockpath'] = '_DBC_SOCKPATH_';
|
|
$dbconfig['db_username'] = '_DBC_USER_';
|
|
$dbconfig['db_password'] = '_DBC_PASS_';
|
|
$dbconfig['db_name'] = '_DBC_NAME_';
|
|
$dbconfig['db_type'] = '_DBC_TYPE_';
|
|
$dbconfig['db_bundled'] = '_DBC_BUNDLED_';
|
|
$vtconfig['adminPwd'] = '_ADMIN_PASS_';
|
|
$vtconfig['standarduserPwd'] ='_STANDARDUSER_PASS_';
|
|
$vtconfig['adminEmail'] = '_ADMIN_EMAIL_';
|
|
$vtconfig['standarduserEmail'] = '_STANDARDUSER_EMAIL_';
|
|
$vtconfig['demoData'] = '_DEMO_DATA_';
|
|
$vtconfig['currencyName'] = '_CURRENCY_NAME_';
|
|
$vtconfig['quickbuild'] = '_QUICKBUILD_';
|
|
?>
|