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
|
<?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_HOST', 'localhost');
|
||||||
define('DATABASE_NAME', 'wishthis');
|
define('DATABASE_NAME', 'wishthis');
|
||||||
define('DATABASE_USER', 'root');
|
define('DATABASE_USER', 'root');
|
||||||
define('DATABASE_PASSWORD', '');
|
define('DATABASE_PASSWORD', '');
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Development
|
||||||
|
*
|
||||||
|
* Keep this disabled for production sites.
|
||||||
|
*/
|
||||||
define('ENV_IS_DEV', false);
|
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(
|
define(
|
||||||
'CHANNELS',
|
'CHANNELS',
|
||||||
array(
|
array(
|
||||||
|
|
Loading…
Reference in a new issue