docs(configuration): #64 add description to constants
This commit is contained in:
parent
0634a79f24
commit
642b3f4a98
1 changed files with 18 additions and 2 deletions
|
@ -1,18 +1,34 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* config-sample.php
|
||||
* Configuration
|
||||
*
|
||||
* @author Jay Trees <github.jay@grandel.anonaddy.me>
|
||||
* Usually, the wishthis installer will create the config.php for you.
|
||||
*/
|
||||
|
||||
/**
|
||||
* Database
|
||||
*
|
||||
* Used to connect to your MySQL database.
|
||||
*/
|
||||
define('DATABASE_HOST', 'localhost');
|
||||
define('DATABASE_NAME', 'wishthis');
|
||||
define('DATABASE_USER', 'root');
|
||||
define('DATABASE_PASSWORD', '');
|
||||
|
||||
/**
|
||||
* Development
|
||||
*
|
||||
* Keep this disabled for production sites.
|
||||
*/
|
||||
define('ENV_IS_DEV', false);
|
||||
|
||||
/**
|
||||
* Channels
|
||||
*
|
||||
* It's save to delete this if you are self-hosting. Alternatively you can
|
||||
* replace these branches and domains with your own.
|
||||
*/
|
||||
define(
|
||||
'CHANNELS',
|
||||
array(
|
||||
|
|
Loading…
Reference in a new issue