docs(configuration): #64 add description to constants

This commit is contained in:
grandeljay 2023-03-12 11:30:45 +01:00
parent 0634a79f24
commit 642b3f4a98

View file

@ -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(