7030b7657e
- Improved ImageView - Login-Window now shows the version of Lychee - iPhone Homescreen Icon - Improved Readme with Pictures
25 lines
620 B
PHP
25 lines
620 B
PHP
<?php
|
|
|
|
/**
|
|
* @name config.php
|
|
* @author Philipp Maurer
|
|
* @author Tobias Reich
|
|
* @copyright 2012 by Philipp Maurer, Tobias Reich
|
|
*/
|
|
|
|
//Database configurations
|
|
$db = "lychee"; //Database name
|
|
$dbUser = "lychee"; //Username of the database
|
|
$dbPassword = "lychee_passwd"; //Password of the Database
|
|
$dbHost = "localhost"; //Host of the Database
|
|
|
|
//lychee user configuration
|
|
$user = "lychee"; //lychee username
|
|
$password = "1234"; //lychee password
|
|
|
|
$thumbQuality = 95; //Quality of the Thumbs (0-100). Default: 95
|
|
|
|
$bitlyUsername = ""; //Your Bit.ly Username
|
|
$bitlyApi = ""; //Your Bit.ly API Key
|
|
|
|
?>
|