Skip to content

Instantly share code, notes, and snippets.

@farleyta
Last active December 14, 2015 07:48
Show Gist options
  • Save farleyta/5052887 to your computer and use it in GitHub Desktop.
Save farleyta/5052887 to your computer and use it in GitHub Desktop.
The local-config.php file for setting up Wordpress on local and production environments, as per Mark Jaquith's article: http://markjaquith.wordpress.com/2011/06/24/wordpress-local-dev-tips/
<?php
// As per Mark Jaquith's article: http://markjaquith.wordpress.com/2011/06/24/wordpress-local-dev-tips/
define('DB_NAME', 'site_dev');
define('DB_USER', 'root');
define('DB_PASSWORD', 'root');
define('DB_HOST', 'localhost');
define('WP_DEBUG', true);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment