Skip to content

Instantly share code, notes, and snippets.

@adrexia
Created July 28, 2014 23:06
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 adrexia/9ad82ddb59d284855542 to your computer and use it in GitHub Desktop.
Save adrexia/9ad82ddb59d284855542 to your computer and use it in GitHub Desktop.
<?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