Skip to content

Instantly share code, notes, and snippets.

@salcode
Created February 25, 2014 11:28
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 salcode/9207204 to your computer and use it in GitHub Desktop.
Save salcode/9207204 to your computer and use it in GitHub Desktop.
wp-config-local.php file for a WordPress project managed with Siteground git deployment (important to .gitignore this file)
<?php
define('DB_NAME', 'local_db_name');
define('DB_USER', 'local_db_user');
define('DB_PASSWORD', 'local_db_pwd');
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