Skip to content

Commit

Permalink
Add a local-config-sample.php so people get the idea of how to use it.
Browse files Browse the repository at this point in the history
  • Loading branch information
markjaquith committed May 29, 2012
1 parent ea74201 commit 972fd41
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions local-config-sample.php
@@ -0,0 +1,12 @@
<?php
/*
This is a sample local-config.php file
In it, you *must* include the four main database defines
You may include other settings here that you only want enabled on your local development checkouts
*/

define( 'DB_NAME', 'local-db-name' );
define( 'DB_USER', 'local-db-user' );
define( 'DB_PASSWORD', 'local-db-password' );
define( 'DB_HOST', 'localhost' ); // Probably 'localhost'

0 comments on commit 972fd41

Please sign in to comment.