19 lines
353 B
PHP
Executable file
19 lines
353 B
PHP
Executable file
<?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>';
|
|
|
|
?>
|