Skip to content

Instantly share code, notes, and snippets.

@since1976
Created October 11, 2012 20:21
Show Gist options
  • Save since1976/3875224 to your computer and use it in GitHub Desktop.
Save since1976/3875224 to your computer and use it in GitHub Desktop.
Local Config file for EECMS
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
/**
* Local config overrides & db credentials
*/
// === DB CONNECTION
$env_db['hostname'] = '';
$env_db['username'] = '';
$env_db['password'] = '';
$env_db['database'] = '';
// === ENV SPECIFIC SETTINGS
$env_config['tmpl_file_basepath'] = $base_path . '/assets/templates/';
$env_config['webmaster_email'] = '';
// === ENV GLOBAL VARS
$env_global = array(
'foo' => 'bar'
);
/* End of file config.local.php */
/* Location: ./config/config.local.php */
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment