Skip to content

Instantly share code, notes, and snippets.

@jillmugge
Created April 22, 2014 14:42
Show Gist options
  • Save jillmugge/11181867 to your computer and use it in GitHub Desktop.
Save jillmugge/11181867 to your computer and use it in GitHub Desktop.
local-config.php
if( file_exists( dirname( __FILE__) . '/local-config.php' ) ) {
include( direname( __FILE__ ) . '/local-config.php' );
define( 'WP_LOCAL_DEV', true );
} else {
deifne ('WP_LOCAL_DEV', false);
define ( 'DB_NAME', 'production_db' );
define ( 'DB_USER', 'prodcuction_user' );
define ( 'DB_PASSWORD', 'production_password' );
define ( 'DB_HOST', 'produciton_db_host' );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment