Last active
August 29, 2015 14:21
-
-
Save mccombs/5e17c84743a25dafddb9 to your computer and use it in GitHub Desktop.
Sample Craft db file
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
if ($_SERVER['SERVER_NAME'] == 'local.sitename') | |
{ | |
return array( | |
'server' => 'localhost', | |
'user' => 'user', | |
'password' => 'password', | |
'database' => 'database', | |
'tablePrefix' => 'craft', | |
); | |
} else { | |
return array( | |
'server' => 'production_db_location', | |
'user' => 'user', | |
'password' => 'password', | |
'database' => 'database', | |
'tablePrefix' => 'craft', | |
); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment