diff --git a/private/config.php.dist b/private/config.php.dist index f174732..0842246 100644 --- a/private/config.php.dist +++ b/private/config.php.dist @@ -1,5 +1,25 @@ \ No newline at end of file +/** + * Sihnon Config Plugin + * + * Specifies the plugin to use for configuration value storage. + * Options include: + * - Database (Requires Database Support to be enabled, and the Sihnon_ConfigTable option set) + * - FlatFile (Requires the Sihnon_ConfigFile option set) + * + * @var string + */ +define('Sihnon_ConfigPlugin', 'Database'); + +/** + * Sihnon Config Table + * + * Specifies the name of the database table thats used for storing configuration values + * when the Database Config Plugin is used. + * + * @var string + */ +define('Sihnon_ConfigTable', 'settings'); + +/** + * Sihnon Config File + * + * Specifies the name of the file used to store configuration values when the FlatFile Config Plugin is used + * + * @var string + */ +define('Sihnon_ConfigFile', '/etc/ripping-cluster/settings.txt'); + +/** + * Sihnon Development Mode + * + * Specifies whether or not the Framework should operate in debug mode + * + * @var bool + */ +define('Sihnon_Dev', false); + +?> diff --git a/private/dbconfig.conf.dist b/private/dbconfig.conf.dist index 5bc9cce..2c5a74c 100644 --- a/private/dbconfig.conf.dist +++ b/private/dbconfig.conf.dist @@ -1,5 +1,5 @@ hostname = localhost -username = handbrake -password = handbrake -dbname = handbrake_cluster +username = ripping +password = ripping +dbname = ripping_cluster