20 lines
353 B
PHP
20 lines
353 B
PHP
|
<?php
|
||
|
/**
|
||
|
* BlueWeather
|
||
|
*
|
||
|
* PHP version 7.2
|
||
|
*
|
||
|
* @category Tools
|
||
|
* @package BlueWeather
|
||
|
* @author Dorian Zedler <dorian@itsblue.de>
|
||
|
* @license GPLV3 gpl.com
|
||
|
* @link itsblue.de
|
||
|
*/
|
||
|
|
||
|
$config['dbhost'] = '<yourdbhost>';
|
||
|
$config['dbname'] = '<yourdbname>';
|
||
|
$config['dbuser'] = '<yourusername>';
|
||
|
$config['dbpassword'] = '<yourpassword>';
|
||
|
|
||
|
?>
|