mirror of
https://github.com/YunoHost-Apps/jeedom_ynh.git
synced 2024-09-03 19:26:26 +02:00
34 lines
1 KiB
PHP
34 lines
1 KiB
PHP
<?php
|
|
|
|
/* This file is part of Jeedom.
|
|
*
|
|
* Jeedom is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* Jeedom is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with Jeedom. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
/* * ********************* Debug **************** */
|
|
define('DEBUG', 0);
|
|
|
|
/* * *********************** MySQL & Memcached ******************* */
|
|
global $CONFIG;
|
|
$CONFIG = array(
|
|
//MySQL parametres
|
|
'db' => array(
|
|
'host' => 'localhost',
|
|
'port' => '3306',
|
|
'dbname' => '__DB_NAME__',
|
|
'username' => '__DB_USER__',
|
|
'password' => '__DB_PWD__',
|
|
),
|
|
);
|
|
|