Summit Configuration
All configuration files are located in SYSTEM_PATH/config/.
Main Config File: SYSTEM_PATH/config/config.php
/** URL to the web application No trailing / and utilizes the APP_URL constant **/
$config['app_url'] = '';
/** Automatically load classes and their configuration **/
$config['autoload'] = array('DB', 'output');
/** You can add any settings here and get access to them from Base::GetRootConfiguration('your_key') **/
$config['app_url'] = '';
/** Automatically load classes and their configuration **/
$config['autoload'] = array('DB', 'output');
/** You can add any settings here and get access to them from Base::GetRootConfiguration('your_key') **/
Database Configuration
/** Right now just mysql **/
$config['driver'] = 'mysql';
/** localhost by default **/ $config['host'] = 'localhost';
/** database username, password and database name **/
$config['username'] = '';
$config['password'] = '';
$config['database'] = '';
/** gives you access to the TABLE_PREFIX constant. DB::Insert, DB::Delete, DB::Update automatically add this to your table name **/
$config['prefix'] = 'pre_';
/** localhost by default **/ $config['host'] = 'localhost';
/** database username, password and database name **/
$config['username'] = '';
$config['password'] = '';
$config['database'] = '';
/** gives you access to the TABLE_PREFIX constant. DB::Insert, DB::Delete, DB::Update automatically add this to your table name **/
$config['prefix'] = 'pre_';

