Created
July 28, 2014 23:06
-
-
Save adrexia/9ad82ddb59d284855542 to your computer and use it in GitHub Desktop.
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 | |
/* What kind of environment is this: development, test, or live (ie, production)? */ | |
define('SS_ENVIRONMENT_TYPE', 'dev'); | |
/* Database connection */ | |
define('SS_DATABASE_SERVER', '127.0.0.1'); | |
define('SS_DATABASE_USERNAME', 'root'); | |
define('SS_DATABASE_PASSWORD', ''); | |
/* Configure a default username and password to access the CMS on all sites in this environment. */ | |
define('SS_DEFAULT_ADMIN_USERNAME', 'admin'); | |
define('SS_DEFAULT_ADMIN_PASSWORD', 'password'); | |
global $_FILE_TO_URL_MAPPING; | |
$_FILE_TO_URL_MAPPING['/Users/adrexia/Sites'] = 'http://localhost'; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment