Skip to content

Instantly share code, notes, and snippets.

@tiernano
Forked from roybarber/wp-local-config.php
Created January 28, 2013 19:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tiernano/4658137 to your computer and use it in GitHub Desktop.
Save tiernano/4658137 to your computer and use it in GitHub Desktop.
<?php
// Local server settings
// Local Database
define('DB_NAME', 'client');
define('DB_USER', 'root');
define('DB_PASSWORD', 'root');
define('DB_HOST', 'localhost');
// Overwrites the database to save keep edeting the DB
define('WP_HOME','http://client.website.dev');
define('WP_SITEURL','http://client.website.dev');
// Turn on debug for local environment
define('WP_DEBUG', true);
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment